Skip to content

Commit a200a03

Browse files
awalterschulzefacebook-github-bot
authored andcommitted
remove HeadersFromContext
Summary: remove HeadersFromContext Reviewed By: codyohl Differential Revision: D59578817 fbshipit-source-id: c4863982d2caa5eaf55c1e4790f45a83310a9793
1 parent 3dfa2cd commit a200a03

File tree

2 files changed

+3
-25
lines changed

2 files changed

+3
-25
lines changed

thrift/lib/go/thrift/context.go

+1-14
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@ import (
2424

2525
type contextKey int
2626

27-
const (
28-
connInfoKey contextKey = iota
29-
protocolKey
30-
)
27+
const connInfoKey contextKey = 0
3128

3229
// ConnInfo contains connection information from clients of the SimpleServer.
3330
type ConnInfo struct {
@@ -77,13 +74,3 @@ func ConnInfoFromContext(ctx context.Context) (ConnInfo, bool) {
7774
v, ok := ctx.Value(connInfoKey).(ConnInfo)
7875
return v, ok
7976
}
80-
81-
// Deprecated: Use thrift.GetHeaders
82-
func HeadersFromContext(ctx context.Context) map[string]string {
83-
t, ok := ctx.Value(protocolKey).(Protocol)
84-
if !ok {
85-
// A nil map behaves like an empty map for reading.
86-
return nil
87-
}
88-
return t.GetResponseHeaders()
89-
}

thrift/lib/go/thrift/context_headers.go

+2-11
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,19 @@ func AddHeader(ctx context.Context, key string, value string) (context.Context,
4343
return ctx, nil
4444
}
4545

46-
// WithHeaders attaches thrift headers to a ctx
46+
// WithHeaders attaches thrift headers to a ctx.
4747
func WithHeaders(ctx context.Context, headers map[string]string) context.Context {
4848
return context.WithValue(ctx, headersKey, headers)
4949
}
5050

5151
// GetHeaders gets thrift headers from ctx.
52-
// WithHeaders will set this, and if nothing is set it
53-
// will defer to thrift.HeadersFromContext
54-
// can return nil if there is no headers.
5552
func GetHeaders(ctx context.Context) map[string]string {
5653
// check for headersKey
5754
v, ok := ctx.Value(headersKey).(map[string]string)
5855
if ok {
5956
return v
6057
}
61-
// deprecated
62-
t, ok := ctx.Value(protocolKey).(Protocol)
63-
if !ok {
64-
// A nil map behaves like an empty map for reading.
65-
return nil
66-
}
67-
return t.GetResponseHeaders()
58+
return nil
6859
}
6960

7061
// Deprecated: RequestHeaders will eventually be private.

0 commit comments

Comments
 (0)