Skip to content

Commit

Permalink
fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
toluaina committed Sep 28, 2021
1 parent f71fb2e commit 800f75b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def transform(self, doc: list, **kwargs) -> dict:
def auth(self, key: str) -> Optional[str]:
"""Sample auth."""
if key == "PG_PASSWORD":
return "abcd"
return None
if key == "ELASTICSEARCH_PASSWORD":
return "ijkl"
return None
if key == "REDIS_AUTH":
return None

Expand Down

0 comments on commit 800f75b

Please sign in to comment.