Skip to content

Commit 5b97338

Browse files
Replace Errorf by Printf
1 parent 5de00ba commit 5b97338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system_tests/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ func publishAndConsumeStreamMsg(host, port, username, password string) {
10121012
fmt.Println("connected to stream endpoint")
10131013
return nil
10141014
}else {
1015-
fmt.Errorf("failed to connect to stream endpoint (%s:%d) due to %g\n", host, portInt, err)
1015+
fmt.Printf("failed to connect to stream endpoint (%s:%d) due to %g\n", host, portInt, err)
10161016
}
10171017
return err
10181018
}, portReadinessTimeout*5, portReadinessTimeout).ShouldNot(HaveOccurred())

0 commit comments

Comments
 (0)