We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dvc-gitactions/.infra/datapak_manage.py
Line 110 in d2c018a
if action == "create": infos = terraform_output() if len(args) == 2: space_name = args[1] space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"], space_name, ) elif len(args) > 2: space_name = args[1] description = args[2] space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"], space_name, description, ) space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"] ) pprint(space)
The text was updated successfully, but these errors were encountered:
Hello @jsaed, thank for your contribution. I this case, when len(ars) >= 2 create_deployment_space would run twice.
create_deployment_space
if action == "create": infos = terraform_output() if len(args) == 2: # Space Name only space_name = args[1] space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"], space_name, ) elif len(args) > 2: # Space Name and Description space_name = args[1] description = args[2] space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"], space_name, description, ) elif (len(ars)) < 2: # Default params space = create_deployment_space( client, infos["cos_crn"], infos["wml_name"], infos["wml_crn"] ) pprint(space)
Sorry, something went wrong.
thanks @arthurolga - ok looks good please add
No branches or pull requests
dvc-gitactions/.infra/datapak_manage.py
Line 110 in d2c018a
The text was updated successfully, but these errors were encountered: