Skip to content
Snippets Groups Projects
Commit bdfaaebe authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_ll_inspiral_pipe: add option to turn on auth + https for trigger aggregator

parent 160f32d4
No related branches found
No related tags found
No related merge requests found
Pipeline #73532 failed
......@@ -599,6 +599,11 @@ if options.agg_data_backend == 'influx':
"influx-hostname": options.influx_hostname,
"influx-port": options.influx_port,
})
if options.enable_auth:
trigagg_options.update({"enable-auth": ""})
if options.enable_https:
trigagg_options.update({"enable-https": ""})
aggNode = dagparts.DAGNode(trigaggJob, dag, [], opts = trigagg_options)
#
......
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