Skip to content

Commit b8cc774

Browse files
committed
flowctl-go use max build id in test command
This had been hard-coded to a zero-valued id, which resulted in validation errors about it being superceded. This makes it the same max value that we use in flowctl in these scenarios.
1 parent 820b193 commit b8cc774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/flowctl-go/cmd-test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (cmd cmdTest) Execute(_ []string) (retErr error) {
5959
return fmt.Errorf("starting local data plane: %w", err)
6060
}
6161

62-
var buildID = "0000000000000000"
62+
var buildID = "ffffffffffffffff"
6363

6464
if err := (apiBuild{
6565
BuildID: buildID,

0 commit comments

Comments
 (0)