Skip to content

Commit

Permalink
Merge pull request #1 from armicron/adjust
Browse files Browse the repository at this point in the history
release v0.26.0
  • Loading branch information
armicron authored Apr 23, 2024
2 parents 9d7944b + 6135824 commit 34ab568
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arq/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from dataclasses import dataclass
from datetime import datetime, timedelta
from operator import attrgetter
from typing import TYPE_CHECKING, Any, Callable, List, Optional, Tuple, Union, cast
from typing import TYPE_CHECKING, Any, Callable, List, Optional, Tuple, Type, Union, cast
from urllib.parse import parse_qs, urlparse
from uuid import uuid4

Expand Down Expand Up @@ -50,7 +50,7 @@ class RedisSettings:
sentinel_master: str = 'mymaster'

retry_on_timeout: bool = False
retry_on_error: Optional[List[Exception]] = None
retry_on_error: Optional[List[Type[Exception]]] = None
retry: Optional[Retry] = None

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ classifiers = [
]
requires-python = '>=3.8'
dependencies = [
'redis[hiredis]>=4.2.0,<5',
'redis[hiredis]>=4.2.0',
'click>=8.0',
]
optional-dependencies = {watch = ['watchfiles>=0.16'] }
Expand Down

0 comments on commit 34ab568

Please sign in to comment.