Skip to content

Commit

Permalink
pick up 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jul 31, 2024
1 parent 41cbd86 commit 94cf187
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
run: |
pytest -x --cov-report term --cov=redis_streams --durations=10 --show-capture=stdout -vv -rP --random-order --html=pytest_report.html --self-contained-html redis_streams_test
coverage html
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4.3.4
with:
name: Coverage-${{ matrix.python-version }}
path: ./htmlcov
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4.3.4
with:
name: Pytest-Report-${{ matrix.python-version }}
path: pytest_report.html
Expand Down
2 changes: 1 addition & 1 deletion redis_streams/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, redis_conn: Redis, stream: str, consumer_group: str):
self.redis_conn = redis_conn
self.stream = stream
self.consumer_group = consumer_group
self.logger = logging.getLogger(PACKAGE)
self.logger = logging.getLogger(f"{PACKAGE}_{self.__class__.__name__}")
self.prepare_redis()

def _create_consumer_group(self) -> None:
Expand Down

0 comments on commit 94cf187

Please sign in to comment.