-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat) update logic used to retrieve session traces
Does the following: - Clearing a session now clears traces only, instead of also deleting the session - Requesting traces for a esssion will return a 404 Session Not found if no traces or session match a non-None session token - Sessions now return session-less requests only up to the latest session marker
- Loading branch information
Showing
5 changed files
with
131 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...r-TracesNotFound-if-a-session-is-specified-and-traces-are-not-found-6b0311673d8b37aa.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
features: | ||
- | | ||
Updates the logic for associating requests with a session. Prior to this change: | ||
(1) non-existent tokens were permitted and returned associations with all requests, | ||
(2) existent tokens returned associations with all matching requests + all untokenized requests after the session was created | ||
After this change: | ||
(1) Requests with non-existent tokens return 400 error codes | ||
(2) Requests with existent tokens return all matching requests + all untokenized requests after the session was created but | ||
only up to the next session creation. | ||
Requests without a token continue to return all requests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters