-
Notifications
You must be signed in to change notification settings - Fork 21
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
Rename .md5 .query_id #1289
Rename .md5 .query_id #1289
Conversation
@@ -216,7 +218,7 @@ def touch_cache(connection: "Connection", query_id: str) -> float: | |||
---------- | |||
connection : Connection | |||
query_id : str | |||
md5 id of the query to touch | |||
query_id id of the query to touch |
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.
The duplicate id
should be removed in this docstring (and the others below).
@@ -602,7 +604,7 @@ def get_compute_time(connection: "Connection", query_id: str) -> float: | |||
---------- | |||
connection : "Connection" | |||
query_id : str | |||
md5 identifier of the query | |||
query_id identifier of the query |
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.
Maybe similar here? "query_id identifier" sounds less of a duplication than "query_id id", but maybe just use "identifier"?
@@ -90,7 +90,7 @@ class QueryStateMachine: | |||
redis_client : StrictRedis | |||
Client for redis | |||
query_id : str | |||
md5 query identifier | |||
query_id query identifier |
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.
See above
Codecov Report
@@ Coverage Diff @@
## master #1289 +/- ##
==========================================
- Coverage 94.12% 94.07% -0.05%
==========================================
Files 155 155
Lines 7484 7483 -1
Branches 697 697
==========================================
- Hits 7044 7040 -4
- Misses 333 334 +1
- Partials 107 109 +2
Continue to review full report at Codecov.
|
Test summaryRun details
View run in Cypress Dashboard ➡️ This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard |
Co-Authored-By: maxalbert <[email protected]>
Co-Authored-By: maxalbert <[email protected]>
b7a62ea
to
14b9161
Compare
Closes #1288
I have:
Description
Renames query's
.md5
attribute to.query_id
.