modified env variable in premiere

This commit is contained in:
iLLiCiTiT 2021-03-12 11:42:45 +01:00
parent d6567358de
commit 5c3465ddeb
2 changed files with 2 additions and 2 deletions

View file

@ -168,7 +168,7 @@ def clearing_caches_ui():
def test_rest_api_server(env):
# from pprint import pformat
rest_url = env.get("PYPE_REST_API_URL")
rest_url = env.get("PYPE_WEBSERVER_URL")
project_name = "{AVALON_PROJECT}".format(**env)
URL = "/".join((rest_url,
"avalon/projects",

View file

@ -14,7 +14,7 @@ class PypeRestApiClient {
* @return {url string}
*/
_getApiServerUrl() {
var url = this.env.PYPE_REST_API_URL;
var url = this.env.PYPE_WEBSERVER_URL;
return url
}