Skip to content

Commit

Permalink
fix: ignore TaskIQ warning log
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Jan 30, 2025
1 parent 7a55e5e commit c9d635f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions silverback/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import atexit
import inspect
import logging
from collections import defaultdict
from datetime import timedelta
from functools import wraps
Expand All @@ -19,6 +20,9 @@
from .state import StateSnapshot
from .types import SilverbackID, TaskType

# NOTE: Disable logging statement about forgotten imports in distributed mode
logging.getLogger("taskiq.receiver.receiver").setLevel(logging.ERROR)


class SystemConfig(BaseModel):
# NOTE: Do not change this datatype unless major breaking
Expand Down

0 comments on commit c9d635f

Please sign in to comment.