Skip to content
Snippets Groups Projects
Commit 45791b98 authored by Matthieu Muffato's avatar Matthieu Muffato
Browse files

Since the Production pipelines have different ways of initializing...

Since the Production pipelines have different ways of initializing "pipeline_db", we set "pipeline_url" instead
parent 6a597afe
No related branches found
No related tags found
2 merge requests!11Changes to make it work with newer eHive and new production pipelines,!11Changes to make it work with newer eHive and new production pipelines
......@@ -98,8 +98,8 @@ sub init_pipeline {
my $dba = $self->pipe_db();
my $dbc = $dba->dbc();
my $run = sprintf(
"init_pipeline.pl %s -registry %s -pipeline_db -host=%s -pipeline_db -port=%s -pipeline_name=%s -password '%s' -pipeline_db -dbname=%s -user=%s %s",
$pipeline, $self->reg_file(), $dbc->host(), $dbc->port(), $dbc->dbname(), $dbc->password(), $dbc->dbname(), $dbc->user(), $self->pipe_options
"init_pipeline.pl %s -registry %s -pipeline_url '%s://%s:%s@%s:%s/%s' %s",
$pipeline, $self->reg_file(), $dbc->driver(), $dbc->user(), $dbc->password(), $dbc->host(), $dbc->port(), $dbc->dbname(), $self->pipe_options
);
$self->builder()->note("Initiating pipeline");
$self->builder()->note($run);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment