🩹 Fixes:
- 🐛 Fix: HTTP: incorrect middleware chain order BUG, (reporter @nitrogenium)
http:
middleware: ["static", "gzip"]
Middleware executed from the right to left, i.e. first will be gzip
and then static
.
👀 New:
- ✏️ HTTP: Properly parse
Forwarder
header, RFC, FR (reporter @digitalkaoz) - ✏️ TEMPORAL: Add
rr_activities_pool_queue_size
andrr_workflows_pool_queue_size
metrics. These metrics shows the number of activities/workflows waiting for the worker BUG, (reporter @Zylius) - ✏️ API:
Queuer
interface for the workers pool to show the number of requests waiting for the worker. Implemented in SDK.