Skip to content

Commit

Permalink
Revert some debugging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtamm committed Sep 11, 2024
1 parent 4c6266b commit 8c26921
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/server/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func NewServer(ctx context.Context, conf config.Config, log *logger.Logger) (*Se

return &Server{
Server: &server.Server{
RPCAddress: conf.Server.RPCAddress(),
RPCAddress: ":" + conf.Server.RPCPort,
HTTPPort: conf.Server.HTTPPort,
BasicAuth: conf.Server.BasicAuth,
OidcAuth: conf.Server.OidcAuth,
Expand Down
2 changes: 0 additions & 2 deletions tests/funnel_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,6 @@ func (f *Funnel) StartServerInDocker(containerName, imageName string, extraArgs
args = append(args, extraArgs...)
args = append(args, imageName, "funnel", "server", "run", "--config", "/opt/funnel_config.yml")

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

cmd := exec.Command("docker", args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 8c26921

Please sign in to comment.