Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed Jul 9, 2024
1 parent 40e8340 commit cdd358f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion faststream/broker/subscriber/usecase.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ async def consume(self, msg: MsgType) -> Any:
if app := context.get("app"):
app.exit()

except Exception:
except Exception: # nosec B110
# All other exceptions were logged by CriticalLogMiddleware
pass

Expand Down
3 changes: 0 additions & 3 deletions tests/brokers/confluent/test_security.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,8 @@

import pytest

from docs.docs_src.confluent.security.ssl_warning import test_without_ssl_warning
from faststream.exceptions import SetupError

__all__ = ["test_without_ssl_warning"]


@contextmanager
def patch_aio_consumer_and_producer() -> Tuple[MagicMock, MagicMock]:
Expand Down

0 comments on commit cdd358f

Please sign in to comment.