summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/python
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2021-02-01 13:52:29 +0100
committerGitHub <noreply@github.com>2021-02-01 13:52:29 +0100
commit12b0a20bce906a8745a73df7ab7cde9eaf6a4ecc (patch)
treea1e41aeb1cd0ecd174b54d3d547da20ca51717ff /config-model/src/main/python
parent40a51db335bf464053c7ba5b6d2870f2aa0cfeab (diff)
Use application_name parameter
Diffstat (limited to 'config-model/src/main/python')
-rw-r--r--config-model/src/main/python/ES_Vespa_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/python/ES_Vespa_parser.py b/config-model/src/main/python/ES_Vespa_parser.py
index b3398fd0403..86df16981f0 100644
--- a/config-model/src/main/python/ES_Vespa_parser.py
+++ b/config-model/src/main/python/ES_Vespa_parser.py
@@ -32,7 +32,7 @@ class ElasticSearchParser:
self.application_name = args.application_name
def main(self):
- self.path = os.getcwd() + "/application/"
+ self.path = os.getcwd() + "/" + self.application_name + "/"
try:
os.mkdir(self.path, 0o777)
print(" > Created folder '" + self.path + "'")