Skip to content
New issue

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

Fix pipeline server creation when url ends with / #1791

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ Create Pipeline Server
... object_storage_access_key=${object_storage_access_key}
... object_storage_secret_key=${object_storage_secret_key}

# Pipeline Server creation fails if object storage url starts with https:// or http:// or if it ends with /
${object_storage_endpoint}= Remove String ${object_storage_endpoint} https:// http://
${object_storage_endpoint}= Strip String ${object_storage_endpoint} characters=/

# Process DSPA Template to create pipeline server
${template_parameters}= Catenate -p DSP_VERSION=${dsp_version}
Expand Down
Loading