Skip to content

Commit 365e118

Browse files
committed
Fix typo in comment
1 parent 09fae65 commit 365e118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/load.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function load(
3434
} catch (error) {
3535
// load() method is called in the application's startup code path.
3636
// Unhandled exceptions cause application crash which can result in crash loops as orchestrators attempt to restart the application.
37-
// Knowing the intended usage of the provider in startup code path, we mitigate back-to-back crash loops from overloading the server with requests by waiting a minimum time to propogate fatal errors.
37+
// Knowing the intended usage of the provider in startup code path, we mitigate back-to-back crash loops from overloading the server with requests by waiting a minimum time to propagate fatal errors.
3838
const delay = MinDelayForUnhandedError - (Date.now() - startTimestamp);
3939
if (delay > 0) {
4040
await new Promise((resolve) => setTimeout(resolve, delay));

0 commit comments

Comments
 (0)