GetStorageInfo implements store.Store's GetStorageInfo
(contextName string)
| 196 | |
| 197 | // GetStorageInfo implements store.Store's GetStorageInfo |
| 198 | func (s *ContextStoreWithDefault) GetStorageInfo(contextName string) store.StorageInfo { |
| 199 | if contextName == DefaultContextName { |
| 200 | return store.StorageInfo{MetadataPath: "<IN MEMORY>", TLSPath: "<IN MEMORY>"} |
| 201 | } |
| 202 | return s.Store.GetStorageInfo(contextName) |
| 203 | } |
nothing calls this directly
no test coverage detected