Remove default value for user_id of writing process

Does not really make sense since the value is hard-coded anyway and will not change
in different deployments.
This commit is contained in:
2020-04-06 13:33:45 +02:00
parent b9908b60d5
commit f4e7d9505e
2 changed files with 0 additions and 5 deletions
-2
View File
@@ -19,8 +19,6 @@ namespace config
extern std::string raw_image_dataset_name;
extern uint32_t parameters_read_retry_interval;
extern int default_writing_user_id;
}
#endif
-3
View File
@@ -22,7 +22,4 @@ namespace config {
hsize_t dataset_increase_step = 1000;
// To which value to initialize a dataset size.
hsize_t initial_dataset_size = 1000;
// -1 means to stay with the same user_id.
int default_writing_user_id = -1;
}