Skip to content

Commit 26dfb0a

Browse files
committed
formatting
1 parent 1bd0dcf commit 26dfb0a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/util-waiter/src/poller.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const runPolling = async <Client, Input>(
3232
const { state, reason } = await acceptorChecks(client, input);
3333
if (reason) {
3434
const message = createMessageFromResponse(reason);
35-
observedResponses[message] |= 0
35+
observedResponses[message] |= 0;
3636
observedResponses[message] += 1;
3737
}
3838

@@ -48,7 +48,7 @@ export const runPolling = async <Client, Input>(
4848
while (true) {
4949
if (abortController?.signal?.aborted || abortSignal?.aborted) {
5050
const message = "AbortController signal aborted.";
51-
observedResponses[message] |= 0
51+
observedResponses[message] |= 0;
5252
observedResponses[message] += 1;
5353
return { state: WaiterState.ABORTED, observedResponses };
5454
}
@@ -63,7 +63,7 @@ export const runPolling = async <Client, Input>(
6363

6464
if (reason) {
6565
const message = createMessageFromResponse(reason);
66-
observedResponses[message] |= 0
66+
observedResponses[message] |= 0;
6767
observedResponses[message] += 1;
6868
}
6969

packages/util-waiter/src/waiter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export type WaiterResult = {
4545
* Responses observed by the waiter during its polling, where the value
4646
* is the count.
4747
*/
48-
observedResponses?: Record<string, number>
48+
observedResponses?: Record<string, number>;
4949
};
5050

5151
/**

0 commit comments

Comments
 (0)