Make use of RequestID Middleware #90
Labels
enhancement
New feature or request
good first issue
Good for newcomers
needs-triage
This label refers to a non-final decision on implementation, when an important feature/bug is added
P2
P2 labels are used for significant features, improvements, etc
We're using an http middleware, which assigns a UUID for every request. This can be super helpful for co-relating http requests, debugging bugs and understanding the overall flow of data.
Currently we're assigning
X-Request-Id
for every request, which might not be what we actually need. Since theuuid
in the request id and theuuid
in the session-based upload are of the same pattern (uuid v4), maybe we can find a way to assignuuid
from theStartUpload
method, re-use this id from any chunk-upload method and complete upload method?The text was updated successfully, but these errors were encountered: