Skip to content

Commit

Permalink
refactor(deskop): session expriy default to 7200
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream authored and Red-Asuka committed Sep 2, 2024
1 parent f89f5b0 commit 3e67f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/connections/ConnectionForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ export default class ConnectionForm extends Vue {
if (val && this.record.properties) {
this.$set(this.record.properties, 'sessionExpiryInterval', 0)
} else if (!val && this.record.properties) {
this.$set(this.record.properties, 'sessionExpiryInterval', null)
this.$set(this.record.properties, 'sessionExpiryInterval', 7200)
}
}
Expand Down

0 comments on commit 3e67f6e

Please sign in to comment.