diff --git a/tsweb/request_id.go b/tsweb/request_id.go index 19519f7a5..2db9cb767 100644 --- a/tsweb/request_id.go +++ b/tsweb/request_id.go @@ -25,6 +25,12 @@ import ( // opaque string. The current implementation uses a UUID. type RequestID string +// String returns the string format of the request ID, for use in e.g. setting +// a [http.Header]. +func (r RequestID) String() string { + return string(r) +} + // RequestIDKey stores and loads [RequestID] values within a [context.Context]. var RequestIDKey ctxkey.Key[RequestID]