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 4d1c323 commit 6751741
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
- name: Slurm Test
run: |
chmod +x funnel
./funnel version
make test-slurm
s3Test:
Expand Down
3 changes: 2 additions & 1 deletion tests/funnel_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,8 @@ func (f *Funnel) StartServerInDocker(containerName, imageName string, extraArgs
"-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")
// args = append(args, imageName, "funnel", "server", "run", "--config", "/opt/funnel_config.yml")
args = append(args, imageName, "funnel", "version")

fmt.Println("DOCKER args:", strings.Join(args, " "))

Expand Down
2 changes: 0 additions & 2 deletions tests/slurm.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ 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 6751741

Please sign in to comment.