-
Notifications
You must be signed in to change notification settings - Fork 1
Bump redis from 2.10.6 to 3.4.1 #9
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
Conversation
1ef0903
to
11a981e
Compare
Bumps [redis](https://github.com/andymccurdy/redis-py) from 2.10.6 to 3.4.1. - [Release notes](https://github.com/andymccurdy/redis-py/releases) - [Changelog](https://github.com/andymccurdy/redis-py/blob/master/CHANGES) - [Commits](redis/redis-py@2.10.6...3.4.1) Signed-off-by: dependabot-preview[bot] <[email protected]>
11a981e
to
e90d89d
Compare
Co-Authored-By: Tatiana Vasilevskaya <[email protected]>
4f68e9a
to
3f7929d
Compare
3f7929d
to
e51e317
Compare
redis_tasks/registries.py
Outdated
@@ -114,12 +114,12 @@ def get_dead_ids(self): | |||
self.key, '-inf', oldest_valid)) | |||
|
|||
|
|||
worker_registry = WorkerRegistry() | |||
worker_registry = LazyObject(lambda: WorkerRegistry()) |
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.
we dont need a lambda here, right?
worker_registry = LazyObject(lambda: WorkerRegistry()) | |
worker_registry = LazyObject(WorkerRegistry) |
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.
right, we could do like so. Thought that that way would be analogous to the rest, but maybe that is not better
redis_tasks/registries.py
Outdated
@@ -133,4 +133,4 @@ def remove(self, queue, *, pipeline): | |||
pipeline.srem(self.key, queue.name) | |||
|
|||
|
|||
queue_registry = QueueRegistry() | |||
queue_registry = LazyObject(lambda: QueueRegistry()) |
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.
queue_registry = LazyObject(lambda: QueueRegistry()) | |
queue_registry = LazyObject(QueueRegistry) |
A newer version of redis exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged. |
Bumps redis from 2.10.6 to 3.4.1.
Changelog
Sourced from redis's changelog.
Commits
4b7f562
3.4.11b05075
remove Redis and ConnectionPool eq comparison5a1f3c4
Move the username argument in the Redis and Connection classes to the ende39ae45
Provide AUTH fallback support for connection URLs with a username componentab1c659
3.4.04287963
better thread-safety for ConnectionPool (#1270)09a17ea
Fix spelling in docstring (#1272)a77ad50
add type filter to scan function272d313
Slight optimization to command packing.9cbb48a
Add test for pipeline.transaction(value_from_callable=True)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Note: This repo was added to Dependabot recently, so you'll receive a maximum of 3 PRs for your first few update runs. Once an update run creates fewer than 3 PRs we'll remove that limit.
You can always request more updates by clicking
Bump now
in your Dependabot dashboard.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language@dependabot badge me
will comment on this PR with code to add a "Dependabot enabled" badge to your readmeAdditionally, you can set the following in your Dependabot dashboard: