You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
channel.call(newRemotePrint("overall from agent", overall));
152
-
while (!IOUtils.toString(text().readAll()).contains("overall from agent")) {
153
-
// Implementations may be unable to honor the completed flag on remotely printed messages, pending some way to have all affected loggers confirm they have flushed
154
-
Logger.getLogger(LogStorageTestBase.class.getName()).info("waiting for remote overall content to appear");
155
-
Thread.sleep(1000);
156
-
}
157
-
// Note that we cannot guarantee ordering of messages if the remote printed declines to flush.
158
150
channel.call(newRemotePrint("step from agent", step));
159
-
while (!IOUtils.toString(text().readAll()).contains("step from agent")) {
160
-
Logger.getLogger(LogStorageTestBase.class.getName()).info("waiting for remote step content to appear");
161
-
Thread.sleep(1000);
162
-
}
163
151
overallPos = assertOverallLog(overallPos, "overall from agent\n<span class=\"pipeline-node-1\">step from agent\n</span>", true);
164
152
stepPos = assertStepLog("1", stepPos, "step from agent\n", true);
0 commit comments