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
For CI/CD setups, it a standard pattern would be:
deploy_model
update_aci_webservice
However, there is no function to detect the existence of a webservice. The workaround is messy:
try({ existing_service <- get_webservice(ws, 'model_name') })
It would be easier to write CI/CD flows to update webservices if either:
get_webservice
The text was updated successfully, but these errors were encountered:
First option makes sense - we'll look into catching the error and returning NULL in get_webservice
Sorry, something went wrong.
No branches or pull requests
For CI/CD setups, it a standard pattern would be:
deploy_model
update_aci_webservice
However, there is no function to detect the existence of a webservice. The workaround is messy:
It would be easier to write CI/CD flows to update webservices if either:
get_webservice
returned NULL if the named webservice is not found instead of throwing an error, or:The text was updated successfully, but these errors were encountered: