Propagate parent value to request context
This commit is contained in:
		@@ -84,8 +84,8 @@ func (ctx *Context) Deadline() (time.Time, bool) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Value always returns nil as this context stores no values
 | 
					// Value always returns nil as this context stores no values
 | 
				
			||||||
func (ctx *Context) Value(_ any) any {
 | 
					func (ctx *Context) Value(key any) any {
 | 
				
			||||||
	return nil
 | 
						return ctx.ctx.Value(key)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Err returns context.Canceled if the context was canceled,
 | 
					// Err returns context.Canceled if the context was canceled,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user