mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Run server on new thread. (#297)
This commit is contained in:
parent
943e4a3de8
commit
3a009407ad
1 changed files with 7 additions and 1 deletions
|
@ -42,7 +42,13 @@ public class Main {
|
||||||
}
|
}
|
||||||
}, 0, TimeUnit.MINUTES.toMillis(60));
|
}, 0, TimeUnit.MINUTES.toMillis(60));
|
||||||
|
|
||||||
|
new Thread(() -> {
|
||||||
|
try {
|
||||||
new ServerLauncher().launch(args);
|
new ServerLauncher().launch(args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
|
||||||
if (Constants.DISABLE_TIMERS)
|
if (Constants.DISABLE_TIMERS)
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue