Some stuff to avoid refreshing race conditions
| 417 | // Some stuff to avoid refreshing race conditions |
| 418 | |
| 419 | type TokenLockManager struct { |
| 420 | locks sync.Map |
| 421 | } |
| 422 | |
| 423 | type lockInfo struct { |
| 424 | mutex *sync.Mutex |
nothing calls this directly
no outgoing calls
no test coverage detected