Skip to content

Commit

Permalink
bump timeout time
Browse files Browse the repository at this point in the history
  • Loading branch information
LoV432 committed Mar 22, 2024
1 parent ebc98ca commit 6b06a97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/lib/rcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const rconInit = async (ip: string, port: number, password: string) => {
ip,
port,
password,
timeout: 500
timeout: 3000
});
} catch (err) {
return { err };
Expand Down
2 changes: 1 addition & 1 deletion app/lib/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const csServerInit = async (ip: string, port: number) => {
return await Server({
ip,
port,
timeout: 500
timeout: 3000
});
} catch (err) {
return { err };
Expand Down

0 comments on commit 6b06a97

Please sign in to comment.