-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Support Python 3 #2760
Support Python 3 #2760
Conversation
a06388f
to
41d156e
Compare
Codecov Report
@@ Coverage Diff @@
## master #2760 +/- ##
===========================================
+ Coverage 84.79% 96.21% +11.42%
===========================================
Files 657 7 -650
Lines 37617 423 -37194
Branches 4516 31 -4485
===========================================
- Hits 31898 407 -31491
+ Misses 4394 12 -4382
+ Partials 1325 4 -1321 |
dca33ed
to
eb1c77e
Compare
30ea58b
to
af87edc
Compare
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.
I'm approving this but from now on can you split up refactoring into a second PR? It would be much easier to review.
TIME_METRICS_DN = "cn=time,cn=monitor" | ||
WAITERS_METRICS_DN = "cn=waiters,cn=monitor" | ||
SEARCH_BASE = 'cn=Monitor' | ||
SEARCH_FILTER = '(objectClass=*)' |
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.
why did you move these?
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.
Module constants are usually slower to access
Motivation
Also added e2e
Additional Notes
Depends on #2762