Skip to content

Commit 6974f4f

Browse files
committed
debugging
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 327cacc commit 6974f4f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

cli/command/service/inspect_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func formatServiceInspect(t *testing.T, format formatter.Format, now time.Time)
117117
VirtualIPs: []swarm.EndpointVirtualIP{
118118
{
119119
NetworkID: "6o4107cj2jx9tihgb0jyts6pj",
120-
Addr: netip.MustParseAddr("10.255.0.4/16"), // FIXME(thaJeztah): this was testing with "10.255.0.4/16"
120+
Addr: netip.MustParsePrefix("10.255.0.4/16"), // FIXME(thaJeztah): this was testing with "10.255.0.4/16"
121121
},
122122
},
123123
},

e2e/stack/remove_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ func TestRemove(t *testing.T) {
2424
func deployFullStack(t *testing.T, stackname string) {
2525
t.Helper()
2626
// TODO: this stack should have full options not minimal options
27-
result := icmd.RunCommand("docker", "stack", "deploy",
27+
result := icmd.RunCommand("docker", "stack", "deploy", "--detach=false",
2828
"--compose-file=./testdata/full-stack.yml", stackname)
2929
result.Assert(t, icmd.Success)
30+
t.Log(result.Combined())
3031

3132
poll.WaitOn(t, taskCount(stackname, 2), pollSettings)
3233
}

vendor/github.com/moby/moby/api/types/swarm/network.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)