Skip to content

Commit

Permalink
fix/is service up no check (#323)
Browse files Browse the repository at this point in the history
* isServiceUp must honor --no-check

* inverted logic
  • Loading branch information
gertd authored Feb 27, 2024
1 parent ec6a729 commit 3e5e12d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/cc/cc.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (c *CommonCtx) CheckRunStatus(containerName string, expectedStatus runStatu

func (c *CommonCtx) IsServing(grpcAddress string) bool {
if c.NoCheck {
return false
return true
}

tlsConf, err := grpcurl.ClientTLSConfig(true, "", "", "")
Expand Down

0 comments on commit 3e5e12d

Please sign in to comment.