Skip to content
Snippets Groups Projects
Commit 9aacf37a authored by deploy's avatar deploy
Browse files

Merge remote-tracking branch 'remotes/origin/14.0.x/release' into 15.0.x/release

parents 2e18bd09 821ee4b8
No related branches found
Tags v15.0.4
No related merge requests found
......@@ -105,6 +105,13 @@ func (a *Client) Get(ctx context.Context, key string) (interface{}, error) {
defer span.End()
value, err := a.GetRaw(spanCtx, key)
if err != nil {
return nil, err
}
if value == nil {
return nil, nil
}
var data interface{}
err = json.Unmarshal(value, &data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment