Merge "Thread.sleep takes milliseconds, not seconds."

This commit is contained in:
Josh Gao
2021-01-26 23:36:05 +00:00
committed by Gerrit Code Review

View File

@@ -460,7 +460,7 @@ public final class SystemServer {
}
try {
Thread.sleep(checkInterval);
Thread.sleep(checkInterval * 1000);
} catch (InterruptedException ex) {
continue;
}