8000 [Processor] Remove spammy logs from async wrapper by rokatyy · Pull Request #3554 · nuclio/nuclio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Processor] Remove spammy logs from async wrapper #3554

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pkg/processor/runtime/python/py/_nuclio_async_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,8 @@ async def _process_connection(self, sock):
self._context.logger = connection_logger

# signal start
self._logger.debug("Signalling connection processing start")
await self._write_packet_to_processor(sock, 's')
self._logger.debug(f"Event processing started for socket")

try:
while True:
# resolve event message length
Expand Down
Loading
0