From 8dfca2f49b9c4c4b682d133420bcb2915bf5d83c Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Wed, 24 Jan 2018 16:22:11 +0100 Subject: [PATCH] Retry interval added to config --- src/config.cpp | 3 +++ src/config.hpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/config.cpp b/src/config.cpp index 57ac5e6..d52d853 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -14,4 +14,7 @@ namespace config { // H5 config. hsize_t dataset_increase_step = 1000; hsize_t initial_dataset_size = 1000; + + // Try again to see if the parameters were passed. + uint32_t parameters_read_retry_interval = 100; } diff --git a/src/config.hpp b/src/config.hpp index 856dd45..3ba8f1b 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -16,6 +16,8 @@ namespace config extern hsize_t dataset_increase_step; extern hsize_t initial_dataset_size; + + extern uint32_t parameters_read_retry_interval; } #endif \ No newline at end of file