Skip to content

Commit

Permalink
fix: Support for a minimum timeout value of -1 in thread pool execution(
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronan1024 committed Apr 4, 2023
1 parent 9676b6a commit 4be859c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hippo4j-ui/src/views/hippo4j/instance/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
v-model="temp.executeTimeOut"
:placeholder="$t('threadPool.executionTimeoutUnit')"
controls-position="right"
:min="0"
:min="-1"
:max="999999"
/>
</el-form-item>
Expand Down
2 changes: 2 additions & 0 deletions hippo4j-ui/src/views/hippo4j/threadpool/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@
v-model="temp.executeTimeOut"
:placeholder="$t('threadPool.executionTimeoutUnit')"
controls-position="right"
:min="-1"
:max="999999"
/>
</el-form-item>
<el-form-item :label="$t('threadPool.keepAliveTime')" prop="keepAliveTime">
Expand Down

0 comments on commit 4be859c

Please sign in to comment.