Skip to content
Snippets Groups Projects
Commit 8f313b9b authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'feature/22-filter-prefix-from-report-bucket' into 'development'

Resolve "Filter prefix from report bucket"

Closes #22

See merge request !20
parents 7ee53072 122afc0e
No related branches found
No related tags found
2 merge requests!69Delete dev branch,!20Resolve "Filter prefix from report bucket"
Pipeline #27660 passed
...@@ -197,7 +197,9 @@ async def check_buckets_access( ...@@ -197,7 +197,9 @@ async def check_buckets_access(
errors.append(error) errors.append(error)
# Check if the user has access to the bucket where the report should be written # Check if the user has access to the bucket where the report should be written
if report_bucket is not None: if report_bucket is not None:
error = await _check_bucket_access(db, uid, report_bucket) error = await _check_bucket_access(
db, uid, report_bucket[5:] if report_bucket.startswith("s3://") else report_bucket
)
if error is not None: if error is not None:
errors.append(error) errors.append(error)
if len(errors) > 0: if len(errors) > 0:
......
...@@ -27,7 +27,7 @@ class WorkflowExecutionIn(_BaseWorkflowExecution): ...@@ -27,7 +27,7 @@ class WorkflowExecutionIn(_BaseWorkflowExecution):
parameters: dict[str, Any] = Field(..., description="Parameters for this workflow") parameters: dict[str, Any] = Field(..., description="Parameters for this workflow")
report_output_bucket: str | None = Field( report_output_bucket: str | None = Field(
None, None,
description="Bucket where to save the Nextflow report. If None, no report will be generated", description="Bucket where to save the Nextflow report. If None, no report will be generated. With our without prefix 's3://'", # noqa: E501
min_length=3, min_length=3,
max_length=63, max_length=63,
example="some-bucket", example="some-bucket",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment