-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Is your feature request related to a problem? Please describe.
The temporal server logs the following log line every time a task runs without the task queue kind
set:
level=WARN msg="Unspecified task queue kind" service=frontend wf-task-queue-name=devbox-temporal-server:pay-server:shared wf-namespace=dev>
As a result, it dominates server log output. kind
is well-documented to default to "Normal", so it seems odd to warn about this behavior.
The Ruby SDK we are using does not pass kind
, so every Ruby task we run generates this log line. This seems like a high amount of logs for a non-issue!
Source of log line:
temporal/service/frontend/workflow_handler.go
Line 859 in 5c26e48
wh.logger.Warn("Unspecified task queue kind", |
Describe the solution you'd like
Don't emit this log line by default. Maybe move it to a verbose option if it's useful for some.
Describe alternatives you've considered
We may try to patch our Ruby SDK to pass kind
to silence this log line, but I believe the community would benefit from less log chunder.
Additional context
None.