We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d984c0f commit 4fa8f37Copy full SHA for 4fa8f37
cmd/test.go
@@ -132,8 +132,6 @@ func (c *testComamnd) Execute() {
132
now := nowInMilliseconds()
133
future := now + waitForMilliseconds
134
135
- fmt.Println("now: " + fmt.Sprint(now) + " - future: " + fmt.Sprint(future))
136
-
137
var success = false
138
for nowInMilliseconds() < future {
139
testResultSummary, err := mc.GetTestResult(testResultID)
@@ -149,7 +147,7 @@ func (c *testComamnd) Execute() {
149
147
break
150
148
}
151
152
- fmt.Println("MicrocksTester waiting for 2 seconds before checking again.")
+ fmt.Println("MicrocksTester waiting for 2 seconds before checking again or exiting.")
153
time.Sleep(2 * time.Second)
154
155
0 commit comments