Fix reading the disableTss option
This commit is contained in:
parent
f7002e2a66
commit
b9e4bb7217
fdbserver
|
@ -242,7 +242,7 @@ class TestConfig {
|
|||
sscanf(value.c_str(), "%d", &maxTLogVersion);
|
||||
}
|
||||
if (attrib == "disableTss") {
|
||||
sscanf(value.c_str(), "%d", &disableTss);
|
||||
disableTss = strcmp(value.c_str(), "true") == 0;
|
||||
}
|
||||
if (attrib == "restartInfoLocation") {
|
||||
isFirstTestInRestart = true;
|
||||
|
|
Loading…
Reference in New Issue