Skip to content

Commit

Permalink
Debug: print funnel version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtamm committed Sep 11, 2024
1 parent 31edfc2 commit 4d1c323
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/funnel_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func (f *Funnel) StartServerInDocker(containerName, imageName string, extraArgs
"-p", fmt.Sprintf("%d:%d", rpcPort, rpcPort),
"-v", "/var/run/docker.sock:/var/run/docker.sock",
"-v", fmt.Sprintf("%s:/bin/funnel", funnelBinary),
"-v", fmt.Sprintf("%s:%s", configPath, "/opt/funnel_config.yml"),
"-v", fmt.Sprintf("%s:/opt/funnel_config.yml", configPath),
}
args = append(args, extraArgs...)
args = append(args, imageName, "funnel", "server", "run", "--config", "/opt/funnel_config.yml")
Expand Down
3 changes: 2 additions & 1 deletion tests/slurm.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ Slurm:
{{printf "#SBATCH --tmp %.0fGB" .DiskGb}}
{{- end}}
which funnel
funnel version
funnel worker run --config /opt/funnel_config.yml --taskID {{.TaskId}}

0 comments on commit 4d1c323

Please sign in to comment.