Skip to content

Commit

Permalink
fix: small typo in error (#2853)
Browse files Browse the repository at this point in the history
<!--Add a description of your PR here-->
This is just a small typo fix. 
Working on a fix for
snakemake/snakemake-executor-plugin-kubernetes#19
and eventually ended up at the following error when deploying to
kubernetes:
```
Error: Error when applying default storage provider gcs to upload workflow sources. {query_validity}
```
Fixing this here so the error is more clear since it looks like
kubernetes uses the docker container from main.
  • Loading branch information
jjjermiah committed Apr 28, 2024
1 parent 433302e commit 325a715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake/api.py
Expand Up @@ -209,7 +209,7 @@ def deploy_sources(
raise ApiError(
f"Error when applying default storage provider "
f"{storage_settings.default_storage_provider} to upload workflow "
"sources. {query_validity}"
f"sources. {query_validity}"
)
storage_object = provider_instance.object(query)
async_run(storage_object.managed_retrieve())
Expand Down

0 comments on commit 325a715

Please sign in to comment.