Fix callback invocation in promiseWithTimeout()
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 6 Oct 2021 07:07:43 +0000 (09:07 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 6 Oct 2021 07:07:43 +0000 (09:07 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/utils/Utils.ts

index 6133177f9aeca78c7970b2a123370d9d187f24c9..502401263e2d8b89097857a59e084dcabc837f22 100644 (file)
@@ -244,7 +244,7 @@ export default class Utils {
     // Create a timeout promise that rejects in timeout milliseconds
     const timeoutPromise = new Promise<never>((_, reject) => {
       setTimeout(() => {
-        timeoutCallback;
+        timeoutCallback();
         reject(timeoutError);
       }, timeoutMs);
     });