StateFile: configurable interval

This commit is contained in:
Max Kellermann
2014-08-24 12:59:45 +02:00
parent d383d617c2
commit 42af040fbd
6 changed files with 27 additions and 4 deletions

View File

@@ -279,7 +279,10 @@ glue_state_file_init(Error &error)
#endif
}
state_file = new StateFile(std::move(path_fs),
unsigned interval = config_get_unsigned(CONF_STATE_FILE_INTERVAL,
StateFile::DEFAULT_INTERVAL);
state_file = new StateFile(std::move(path_fs), interval,
*instance->partition,
*instance->event_loop);
state_file->Read();