Skip to content

Commit

Permalink
more debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Dec 1, 2023
1 parent 14d9570 commit b0dfb4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion internal/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,14 @@ func RunNewDeployment(t *testing.T, shouldTCPDump bool) *SlidingSyncDeployment {
"apt", "update",
})
execInContainer(mitmproxyContainer, []string{
"apt", "install", "net-tools", "-y",
"apt", "install", "net-tools", "curl", "-y",
})
execInContainer(mitmproxyContainer, []string{
"netstat", "-lp",
})
execInContainer(mitmproxyContainer, []string{
"curl", "-v", "-X", "POST", "-d", "{}", "-x", "http://localhost:8080", "http://mitm.code/options/unlock",
})
fmt.Println("____________________________")

// Make a postgres container
Expand Down

0 comments on commit b0dfb4c

Please sign in to comment.