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.
This PR updates multiple models to solve an issue (#71) where sessions are not reused. This PR modifies multiple models and methods. This commit modifies the agent, connection, and session models.
The agent model's watch method has been updated to iterate through sessions. The agent model will deactivate any session that has an empty request id. The watch method logic has also been updated to ensure it properly waits for an available session. The agent request method has been updated to fix an issue where multiple axios interceptors would be registered for an instance.
The connection model has been revised to remove the ready method and add a confirm and deactivate method. The confirm method will iterate through sessions and deactivate any sessions that are in an unknown state. The deactivate method will target a specific session for deactivation given an authorization header or id.