-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Session tracking fixes #412
Merged
Merged
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
bdb9540
Removed empty functions
Cawllec cbc92b6
Removed trailing whitespace
Cawllec 613b287
Removed join, making session creation actually asynchronous
Cawllec 42f48c8
Ensured that payloads are trimmed & converted to JSON before delivery…
Cawllec 3563309
Removed backoff from delivery
Cawllec 4b8bdad
Remove debug statements
Cawllec d0b1b08
Removed invalid import
Cawllec 015e9d0
Fixed time threshold
Cawllec af264a0
Added wait for tests when sending
Cawllec 77456f6
Removed several unneccessary threads, streamlined delivery
Cawllec e79758a
Fixed tests
Cawllec c206be2
Added concurrent ruby
Cawllec 63cee6f
Corrected shutdown command
Cawllec 0523322
Simplified success criteria, changed track_sessions to auto_session_t…
Cawllec 75b146f
fixed success checking
Cawllec 90909da
Removed mutex
Cawllec 15bea62
Kept back compatability with track_sessions
Cawllec 63a6d2a
Better thread safety
Cawllec 4168fb1
Fixed brit spelling
Cawllec 90959d3
Changed auto_session_tracking to auto_capture_sessions
Cawllec d684a41
Changed interface to reflect common docs
Cawllec 1f2615b
Ensured alias in correct place
Cawllec 1701d87
Removed now-unneccessary waits
Cawllec 53e4694
Added start_session callthrough to client, clarified delivery method
Cawllec dfcb202
Changed ref's to client func
Cawllec 798548f
Ammended old changelog instructions
Cawllec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Bugsnag.configure do |config| | ||
config.api_key = "YOUR_API_KEY" | ||
config.track_sessions = true | ||
config.auto_capture_sessions = true | ||
end |
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't mention the
send_sessions
thing. Ideally that shouldn't even be public imo. It doesn't look like it's defined on Bugsnag anyway. The function should bestart_session
notcreate_session
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that's the old changelog. I'll fix the copy.