refactor(deskop): session expriy default to 7200 #1744
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Checklist
If you have any questions, you can refer to the Contributing Guide
What is the current behavior?
Currently, for MQTT v5 with a clean start set to false, the Session Expiry Interval is set to never expire by default. This can lead to persistent connections that may unnecessarily consume resources, especially in Serverless environments where it can affect billing.
Issue Number
Example: #123
What is the new behavior?
This PR proposes to change the default Session Expiry Interval from never expire to 7200 seconds (2 hours, keep with EMQX default config) when using MQTT v5 with clean start set to false. This change aims to balance connection persistence with resource management.
Proposed changes:
Does this PR introduce a breaking change?
This change may affect existing connections that rely on indefinite session persistence.
Specific Instructions
handleClean
method or equivalent to set the new default value.