default to forgetful

This commit is contained in:
Will Hunt 2021-05-14 14:42:49 +01:00
parent 5b521468f1
commit 93db4a02ab

View File

@ -147,7 +147,7 @@ class ServerConfig:
history_fetch_delay = attr.ib(type=int, default=3)
sync_on_startup = attr.ib(type=bool, default=False)
sync_stop_after = attr.ib(type=int, default=600)
store_forgetful = attr.ib(type=bool, default=False)
store_forgetful = attr.ib(type=bool, default=True)
@attr.s
class PanConfig: