Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com> Upstream-commit: ed6fd3d95bde4651ffb66d37cd1e5e76ee3c1f7b Component: engine
23 lines
386 B
Go
23 lines
386 B
Go
package session
|
|
|
|
import "context"
|
|
|
|
type contextKeyT string
|
|
|
|
var contextKey = contextKeyT("buildkit/session-id")
|
|
|
|
func NewContext(ctx context.Context, id string) context.Context {
|
|
if id != "" {
|
|
return context.WithValue(ctx, contextKey, id)
|
|
}
|
|
return ctx
|
|
}
|
|
|
|
func FromContext(ctx context.Context) string {
|
|
v := ctx.Value(contextKey)
|
|
if v == nil {
|
|
return ""
|
|
}
|
|
return v.(string)
|
|
}
|