Skip to content

Draft: feat: optionally append BA credentials to URL destinations

Pavel Zlámal requested to merge auth2 into main
  • If BA credentials are present in standardized service config file, append them to the CURL command like '-u user:pass'.
  • Supported in generic_send.py and generic_sender.py scripts when everything runs the standard way. If you override transport_command or create it by using generic_sender.prepare_url_transport_command() then no credentials are appended, and you have to do it by yourself.
  • We can't simply use overridden transport_command for this functionality, since it doesn't work for URL destinations correctly (can't catch stdout in temporary file).

Merge request reports