Skip to content

Commit 33b0530

Browse files
author
FalkWolsky
committed
Increase Query Timeout Defaults in Frontend
1 parent 5c94e81 commit 33b0530

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/packages/lowcoder/src/comps/queries/queryComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const childrenMap = {
134134
// advanced
135135
timeout: paramsMillisecondsControl({
136136
left: 0,
137-
right: 120 * 1000,
137+
right: 3200 * 1000,
138138
defaultValue: 10 * 1000,
139139
}),
140140
confirmationModal: QueryConfirmationModal,

client/packages/lowcoder/src/comps/queries/queryComp/queryPropertyView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function QueryPropertyView(props: { comp: InstanceType<typeof QueryComp>
9494
{children.timeout.propertyView({
9595
label: trans("query.timeout"),
9696
placeholder: "10s",
97-
tooltip: trans("query.timeoutTooltip", { maxSeconds: 120, defaultSeconds: 10 }),
97+
tooltip: trans("query.timeoutTooltip", { maxSeconds: 3600, defaultSeconds: 10 }),
9898
placement: "bottom",
9999
})}
100100
</QuerySectionWrapper>

0 commit comments

Comments
 (0)