You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minogrpc uses a DiskStore to store its own certificate. The DiskStore uses the InMemoryStore as a caching layer, which prevents certificates from being loaded each time from the disk. While performant, this caching layer prevents the node from loading an updated certificate.
Minogrpc uses a
DiskStore
to store its own certificate. TheDiskStore
uses theInMemoryStore
as a caching layer, which prevents certificates from being loaded each time from the disk. While performant, this caching layer prevents the node from loading an updated certificate.Possible solutions:
Update the
DiskStore
to watch the server certificate file and reload it once it changes. For example with https://github.com/fsnotify/fsnotify.Update the
InMemoryStore
to add an expiration time on elements.The text was updated successfully, but these errors were encountered: