()
| 2581 | } |
| 2582 | |
| 2583 | func newFlakySessionStorage() *flakySessionStorage { |
| 2584 | return &flakySessionStorage{data: make(map[string][]byte)} |
| 2585 | } |
| 2586 | |
| 2587 | func (s *flakySessionStorage) GetWithContext(_ context.Context, key string) ([]byte, error) { |
| 2588 | s.mu.Lock() |
no outgoing calls
no test coverage detected