We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec2ca6 commit bd11aeaCopy full SHA for bd11aea
1 file changed
app/epa/settings.py
@@ -208,8 +208,11 @@
208
else (dict())
209
)
210
211
+# Server queue which will process the simulation, openplan for prod mvs version and "" (blank) for dev mvs version
212
+MVS_API_QUEUE = env("MVS_API_QUEUE", default="openplan")
213
+
214
MVS_API_HOST = env("MVS_API_HOST", default="https://mvs-eland.rl-institut.de")
-MVS_POST_URL = f"{MVS_API_HOST}/sendjson/"
215
+MVS_POST_URL = f"{MVS_API_HOST}/sendjson/{MVS_API_QUEUE}"
216
MVS_GET_URL = f"{MVS_API_HOST}/check/"
217
MVS_LP_FILE_URL = f"{MVS_API_HOST}/get_lp_file/"
218
MVS_SA_POST_URL = f"{MVS_API_HOST}/sendjson/openplan/sensitivity-analysis"
0 commit comments