forked from toolshed/abra
		
	chore: go mod tidy / vendor / make deps
This commit is contained in:
		
							
								
								
									
										6
									
								
								vendor/go.opentelemetry.io/otel/propagation/baggage.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								vendor/go.opentelemetry.io/otel/propagation/baggage.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@ -20,7 +20,7 @@ type Baggage struct{}
 | 
			
		||||
var _ TextMapPropagator = Baggage{}
 | 
			
		||||
 | 
			
		||||
// Inject sets baggage key-values from ctx into the carrier.
 | 
			
		||||
func (b Baggage) Inject(ctx context.Context, carrier TextMapCarrier) {
 | 
			
		||||
func (Baggage) Inject(ctx context.Context, carrier TextMapCarrier) {
 | 
			
		||||
	bStr := baggage.FromContext(ctx).String()
 | 
			
		||||
	if bStr != "" {
 | 
			
		||||
		carrier.Set(baggageHeader, bStr)
 | 
			
		||||
@ -30,7 +30,7 @@ func (b Baggage) Inject(ctx context.Context, carrier TextMapCarrier) {
 | 
			
		||||
// Extract returns a copy of parent with the baggage from the carrier added.
 | 
			
		||||
// If carrier implements [ValuesGetter] (e.g. [HeaderCarrier]), Values is invoked
 | 
			
		||||
// for multiple values extraction. Otherwise, Get is called.
 | 
			
		||||
func (b Baggage) Extract(parent context.Context, carrier TextMapCarrier) context.Context {
 | 
			
		||||
func (Baggage) Extract(parent context.Context, carrier TextMapCarrier) context.Context {
 | 
			
		||||
	if multiCarrier, ok := carrier.(ValuesGetter); ok {
 | 
			
		||||
		return extractMultiBaggage(parent, multiCarrier)
 | 
			
		||||
	}
 | 
			
		||||
@ -38,7 +38,7 @@ func (b Baggage) Extract(parent context.Context, carrier TextMapCarrier) context
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Fields returns the keys who's values are set with Inject.
 | 
			
		||||
func (b Baggage) Fields() []string {
 | 
			
		||||
func (Baggage) Fields() []string {
 | 
			
		||||
	return []string{baggageHeader}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user