diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/Session/session.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/Session/session.ts b/src/server/Session/session.ts index 049a37b04..e32811a18 100644 --- a/src/server/Session/session.ts +++ b/src/server/Session/session.ts @@ -175,7 +175,7 @@ export namespace Session { * email if the server encounters an uncaught exception or if the server cannot be reached. * @param work the function specifying the work to be done by each worker thread */ - export async function initializeWorker(work: Function) { + export async function initializeWorker(work: Function): Promise<void> { let listening = false; // notify master thread (which will log update in the console) of initialization via IPC |