Skip to content

Commit

Permalink
fix(cc-tile-status-codes.smart): pass warpConfig instead of `apiCon…
Browse files Browse the repository at this point in the history
…fig`

Fixes #1085
  • Loading branch information
florian-sanders-cc committed Jun 14, 2024
1 parent 1adcbc8 commit ceb6782
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ async function fetchStatusCodes ({ apiConfig, signal, ownerId, appId }) {
const warpToken = await getWarp10AccessLogsToken({ orgaId: ownerId })
.then(sendToApi({ apiConfig, signal, cacheDelay: ONE_DAY }));
return getStatusCodesFromWarp10({ warpToken, ownerId, appId })
.then(sendToWarp({ apiConfig, signal, timeout: THIRTY_SECONDS }));
.then(sendToWarp({ warpConfig: apiConfig, signal, timeout: THIRTY_SECONDS }));
}

0 comments on commit ceb6782

Please sign in to comment.