Skip to content

Commit

Permalink
maybe logging will help…
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Nov 28, 2024
1 parent 749b130 commit 31f86ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion internal/dev/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ func SetupRegistry(ctx context.Context, image string, port int) error {
}

func WaitForPortReady(ctx context.Context, port int) error {

timeout := time.After(10 * time.Minute)
retry := time.NewTicker(5 * time.Millisecond)
for {
Expand Down
4 changes: 2 additions & 2 deletions internal/integration/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ func run(t *testing.T, actionsOrOptions ...ActionOrOption) {
assert.True(t, ok)

// Build FTL binary
logger := log.Configure(&logWriter{logger: t}, log.Config{Level: log.Debug})
ctx := log.ContextWithLogger(context.Background(), logger)
// logger := log.Configure(&logWriter{logger: t}, log.Config{Level: log.Debug})
ctx := log.ContextWithNewDefaultLogger(context.Background())
binDir := filepath.Join(rootDir, "build", "release")

var kubeClient *kubernetes.Clientset
Expand Down

0 comments on commit 31f86ec

Please sign in to comment.