You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if the the post I've made on the Community forum has been reviewed yet.
I haven't seen a commit on it (not in the "master" nor the "dss80-set-code-env-mode") so I post an issue here.
The function set_code_env (from the class CodeRecipeSettings) doesn't set the code env but a string :
if code_env is not None: rp["envSelection"] = {"envMode": "EXPLICIT_ENV", "envName": "code_env"}
Should be :
if code_env is not None: rp["envSelection"] = {"envMode": "EXPLICIT_ENV", "envName": code_env}
Hoping I won't trouble your workspace.
Greetings,
Steven
The text was updated successfully, but these errors were encountered:
Hi,
I don't know if the the post I've made on the Community forum has been reviewed yet.
I haven't seen a commit on it (not in the "master" nor the "dss80-set-code-env-mode") so I post an issue here.
The function set_code_env (from the class CodeRecipeSettings) doesn't set the code env but a string :
if code_env is not None: rp["envSelection"] = {"envMode": "EXPLICIT_ENV", "envName": "code_env"}
Should be :
if code_env is not None: rp["envSelection"] = {"envMode": "EXPLICIT_ENV", "envName": code_env}
Hoping I won't trouble your workspace.
Greetings,
Steven
The text was updated successfully, but these errors were encountered: