-
Notifications
You must be signed in to change notification settings - Fork 183
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
Fixed double-writes. #874
base: main
Are you sure you want to change the base?
Fixed double-writes. #874
Conversation
60005e5
to
6534181
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #874 +/- ##
==========================================
+ Coverage 71.95% 73.45% +1.50%
==========================================
Files 91 77 -14
Lines 8001 5658 -2343
==========================================
- Hits 5757 4156 -1601
+ Misses 2244 1502 -742 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Alex Loyko <[email protected]>
6d6f198
to
0edf227
Compare
Signed-off-by: Alex Loyko <[email protected]>
Signed-off-by: Alex Loyko <[email protected]>
CHANGELOG.md
Outdated
@@ -6,8 +6,10 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | |||
- Added option to pass custom headers to 'AWSV4SignerAsyncAuth' ([863](https://github.com/opensearch-project/opensearch-py/pull/863)) | |||
- Added sync and async sample that uses `search_after` parameter ([859](https://github.com/opensearch-project/opensearch-py/pull/859)) | |||
### Updated APIs | |||
- Updated opensearch-py APIs to reflect [opensearch-api-specification@a2afe56](https://github.com/opensearch-project/opensearch-api-specification/commit/a2afe567254c42aee70b74a8d7d7228c982b56db) |
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.
This seems unrelated, remove.
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.
was confused because it auto-popped somehow
@@ -236,7 +236,7 @@ async def test_nowarn_when_test_uses_https_if_verify_certs_is_off(self) -> None: | |||
assert ( | |||
str(w[0].message) == "enable_cleanup_closed ignored because " | |||
"https://github.com/python/cpython/pull/118960 is fixed in " | |||
"Python version sys.version_info(major=3, minor=12, micro=7, releaselevel='final', serial=0)" | |||
"Python version sys.version_info(major=3, minor=12, micro=8, releaselevel='final', serial=0)" |
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.
This fine, but I'd prefer we fixed it once and for all by checking that the string contains https://github.com/python/cpython/pull/118960
and none of the other stuff.
Signed-off-by: Alex Loyko <[email protected]>
6559c6b
to
06eea03
Compare
Description
Issues Resolved
None, self-research
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.