-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
add username as a parameter for redis components on 3.4.x #12835
add username as a parameter for redis components on 3.4.x #12835
Conversation
tests/core/test_lock_store.py
Outdated
@@ -384,3 +387,42 @@ async def test_redis_lock_store_with_valid_prefix(monkeypatch: MonkeyPatch): | |||
with pytest.raises(LockError): | |||
async with lock_store.lock("some sender"): | |||
pass | |||
|
|||
|
|||
def test_tracker_store_endpoint_config_loading(endpoints_path: Text): |
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.
Default fixture file does not have field username.
Create a new fixture file and use that.
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.
Ah, I've added the username field in the existing yaml file. I hope that also works?
tests/core/test_lock_store.py
Outdated
) | ||
|
||
|
||
def test_create_lock_store_from_endpoint_config(domain: Domain, endpoints_path: Text): |
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.
Same here.
🚀 A preview of the docs have been deployed at the following URL: https://12835--rasahq-docs-rasa-v2.netlify.app/docs/rasa |
Proposed changes:
username
to the connection parameters for RedisLockStoreStatus (please check what you already did):
black
(please check Readme for instructions)