We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab9cbf commit 80a1d20Copy full SHA for 80a1d20
packages/runtime/src/createGatewayRuntime.ts
@@ -648,7 +648,9 @@ export function createGatewayRuntime<
648
const currentTime = Date.now();
649
if (nextFetchTime >= currentTime) {
650
const delay = nextFetchTime - currentTime;
651
- graphosLogger.info(`Fetching supergraph with delay: ${delay}ms`);
+ graphosLogger.info(
652
+ `Fetching supergraph with delay: ${delay}ms`,
653
+ );
654
return new Promise((resolve) =>
655
setTimeout(() => {
656
nextFetchTime = 0;
0 commit comments