Get things back to mostly stable.

This commit is contained in:
James Quinley
2022-11-26 07:47:02 -08:00
parent bdffff72bf
commit 1a969fdec4
2 changed files with 14 additions and 12 deletions

View File

@ -2184,17 +2184,11 @@ public class delegationServices {
}
public static void userAuthetication() {
while (true) {
final Runnable runnable = new Runnable() {
public void run() {
Lrequest = dCollection.find(eq("status", false)).first();
if (!(Lrequest == null)) {
Lrequest = dCollection.find(eq("status", false)).first();
if (!(Lrequest == null)) {
delegationProcesser();
}
}
};
runnable.run();
}
}
}