Skip to content

Commit

Permalink
fix var inits (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhseiden committed Jan 26, 2022
1 parent 41c90a0 commit d9a154a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exec_resp_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const (
// conditions in the acquire and release code. There should not be
// a performance implication since these fns are called infrequently.
var (
globalExecRespCacheMu sync.Mutex
globalExecRespCache map[string]*execRespCache
globalExecRespCacheMu = sync.Mutex{}
globalExecRespCache = map[string]*execRespCache{}
)

func acquireExecRespCache(id string) *execRespCache {
Expand Down

0 comments on commit d9a154a

Please sign in to comment.