Skip to content

Commit ed87c1e

Browse files
committed
chore(core): clarify we don't care about the timeout promise
1 parent 00fbe1c commit ed87c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/v3/timeout/usageTimeoutManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class UsageTimeoutManager implements TimeoutManager {
5656

5757
// Call the listener if registered
5858
if (this._listener) {
59-
this._listener(timeoutInSeconds, elapsedTimeInSeconds);
59+
void this._listener(timeoutInSeconds, elapsedTimeInSeconds);
6060
}
6161

6262
this._abortController.abort(

0 commit comments

Comments
 (0)