Skip to content

Commit

Permalink
"workspace_id" now appears to be a reserved output variable name; s/w…
Browse files Browse the repository at this point in the history
…orkspace_id/workspace_uuid/
  • Loading branch information
tomkinsc committed Jan 13, 2025
1 parent f021890 commit 430eff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipes/WDL/tasks/tasks_terra.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ task check_terra_env {

String user_email = read_string("user_email.txt")

String workspace_id = read_string("workspace_id.txt")
String workspace_uuid = read_string("workspace_id.txt")
String workspace_name = read_string("workspace_name.txt")
String workspace_namespace = read_string("workspace_namespace.txt")
String workspace_bucket_path = read_string("workspace_bucket_path.txt")
Expand Down
2 changes: 1 addition & 1 deletion pipes/WDL/workflows/dump_gcloud_env_info.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ workflow dump_gcloud_env_info {

String google_project_id = check_terra_env.google_project_id

String workspace_id = check_terra_env.workspace_id
String workspace_uuid = check_terra_env.workspace_uuid
String workspace_name = check_terra_env.workspace_name
String workspace_namespace = check_terra_env.workspace_namespace
String workspace_bucket_path = check_terra_env.workspace_bucket_path
Expand Down

0 comments on commit 430eff2

Please sign in to comment.