-
Notifications
You must be signed in to change notification settings - Fork 140
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
SNOW-878067: Retry Strategy #803
Conversation
Codecov Report
@@ Coverage Diff @@
## master #803 +/- ##
==========================================
- Coverage 83.38% 83.07% -0.31%
==========================================
Files 89 89
Lines 9075 9148 +73
Branches 827 835 +8
==========================================
+ Hits 7567 7600 +33
- Misses 1280 1323 +43
+ Partials 228 225 -3
... and 13 files with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
…lakedb/snowflake-connector-net into SNOW-878067-Retry-Strategy
Codecov Report
@@ Coverage Diff @@
## master #803 +/- ##
==========================================
- Coverage 83.38% 83.07% -0.31%
==========================================
Files 89 89
Lines 9075 9148 +73
Branches 827 835 +8
==========================================
+ Hits 7567 7600 +33
- Misses 1280 1323 +43
+ Partials 228 225 -3
... and 13 files with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
Codecov Report
@@ Coverage Diff @@
## master #803 +/- ##
==========================================
+ Coverage 83.38% 83.67% +0.28%
==========================================
Files 89 89
Lines 9075 9149 +74
Branches 827 835 +8
==========================================
+ Hits 7567 7655 +88
+ Misses 1280 1268 -12
+ Partials 228 226 -2
... and 2 files with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
Codecov Report
@@ Coverage Diff @@
## master #803 +/- ##
==========================================
+ Coverage 83.38% 83.54% +0.16%
==========================================
Files 89 89
Lines 9075 9146 +71
Branches 827 835 +8
==========================================
+ Hits 7567 7641 +74
+ Misses 1280 1278 -2
+ Partials 228 227 -1
... and 1 file with indirect coverage changes 📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
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.
LGTM, please remember about (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
The OS check is now removed |
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.
LGTM
Description
Regarding issue 575
The PR adds a new retry strategy for login requests with a new base time and adding jitter. It also adds the id and name to the header for login requests
New parameters for retry strategy
Modified parameters
Checklist
dotnet test
)