Skip to content

Commit

Permalink
chore: revert server timeout to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
sahithyandev committed Nov 3, 2024
1 parent c63e7fb commit ffb031c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/generate-pdfs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function outputFilename(filePath: string) {
);
}

async function waitForServer(url: string, timeout = 5000, interval = 500) {
async function waitForServer(url: string, timeout = 10000, interval = 500) {
const start = Date.now();

while (Date.now() - start < timeout) {
Expand Down

0 comments on commit ffb031c

Please sign in to comment.