Skip to content

Commit

Permalink
Merge pull request #525 from jaceksan/working
Browse files Browse the repository at this point in the history
TRIVIAL: move provisioning of localized workspaces

Reviewed-by: Jan Kadlec
             https://github.com/hkad98
  • Loading branch information
gdgate authored Jan 17, 2024
2 parents e71a823 + 48b39ee commit 6065207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gooddata-dbt/gooddata_dbt/dbt_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,12 @@ def process_organization(
deploy_ldm(
logger, args, gd_config.all_model_ids, sdk_wrapper, data_product.model_ids, workspace_id
)
if data_product.localization:
create_localized_workspaces(logger, data_product, sdk_wrapper.sdk_facade, workspace_id)
elif args.method == "store_analytics":
store_analytics(logger, sdk_wrapper.sdk, workspace_id, data_product)
elif args.method == "deploy_analytics":
deploy_analytics(logger, sdk_wrapper, workspace_id, data_product)
if data_product.localization:
create_localized_workspaces(logger, data_product, sdk_wrapper.sdk_facade, workspace_id)
elif args.method == "test_insights":
parallelism = gd_config.global_properties.test_insights_parallelism or 1
asyncio.run(
Expand Down

0 comments on commit 6065207

Please sign in to comment.