summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-09-26 13:21:33 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-09-26 13:21:33 +0300
commite207204d97c1cb89eb76f21759fa53fa0ec94b5d (patch)
tree95326f8960f349143488fa4f34f9b29d029b4e8a
parent7a21d0e1281867e1cef3ff2a7ec2456562e0ee79 (diff)
downloadapscheduler-e207204d97c1cb89eb76f21759fa53fa0ec94b5d.tar.gz
Removed the notify_channel parameter
It's not longer used directly in the SQLAlchemy stores.
-rw-r--r--src/apscheduler/datastores/sqlalchemy.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/apscheduler/datastores/sqlalchemy.py b/src/apscheduler/datastores/sqlalchemy.py
index 225677e..06dfe9e 100644
--- a/src/apscheduler/datastores/sqlalchemy.py
+++ b/src/apscheduler/datastores/sqlalchemy.py
@@ -70,7 +70,6 @@ class _BaseSQLAlchemyDataStore:
lock_expiration_delay: float = attr.field(default=30)
max_poll_time: Optional[float] = attr.field(default=1)
max_idle_time: float = attr.field(default=60)
- notify_channel: Optional[str] = attr.field(default='apscheduler')
start_from_scratch: bool = attr.field(default=False)
_logger: Logger = attr.field(init=False, factory=lambda: getLogger(__name__))