This commit is contained in:
Jeff (Zhefu) Jiang 2015-07-17 14:50:50 -07:00
Родитель 4fc49fed6f
Коммит 4c78120a23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -89,7 +89,8 @@ func NewContext(ctx context.Context, ef *EffectiveCallerID, im *ImmediateCallerI
ctx = context.WithValue(
context.WithValue(ctx, effectiveCallerIDKey, ef),
immediateCallerIDKey,
im)
im,
)
return ctx
}