Fix wrong settings in gc bench

Reviewers: mferencevic, teon.banek

Reviewed By: mferencevic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2207
This commit is contained in:
Marin Tomic 2019-07-15 17:09:19 +02:00
parent bf4f69f2e5
commit e7f897984f

View File

@ -26,7 +26,7 @@ std::pair<std::string, storage::StorageGcConfig> TestConfigurations[] = {
.interval = std::chrono::milliseconds(100)}},
{"1000msPeriodicGc",
storage::StorageGcConfig{.type = storage::StorageGcConfig::Type::ON_FINISH,
storage::StorageGcConfig{.type = storage::StorageGcConfig::Type::PERIODIC,
.interval = std::chrono::milliseconds(1000)}}};
void UpdateLabelFunc(int thread_id, storage::Storage *storage,