Skip to content

Commit

Permalink
webapp: use default timeout of 5s
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Jan 11, 2025
1 parent 623d0c7 commit 3a183b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function Settings() {
});

const query_timeout_tooltip =
"<b>Experimental:</b> Timeout queries after a number of seconds. 0 to disable timeout. If set, recommended to be at least 3 seconds. Not applied to all queries yet. <br/>Default: 0 (disabled)";
"<b>Experimental:</b> Timeout queries after a number of seconds. 0 to disable timeout. If set, recommended to be at least 3 seconds. Not applied to all queries yet. <br/>Default: 5 (disabled)";

return (
<>
Expand Down
1 change: 1 addition & 0 deletions webapp/src/preferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface ClientPreferences {
export function createDefaultClientPreferences(): ClientPreferences {
return {
timestamp_format: "local",
query_timeout: 5,
};
}

Expand Down

0 comments on commit 3a183b8

Please sign in to comment.