server-mode: Do not ignore the first cacheArgument on configure
SetCacheArgs skips the first argument it gets, so add some padding before calling it.
This commit is contained in:
parent
db3499df5d
commit
28e891f0c7
|
@ -923,7 +923,7 @@ cmServerResponse cmServerProtocol1_0::ProcessConfigure(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure the types of cacheArguments matches (if given):
|
// Make sure the types of cacheArguments matches (if given):
|
||||||
std::vector<std::string> cacheArgs;
|
std::vector<std::string> cacheArgs = { "unused" };
|
||||||
bool cacheArgumentsError = false;
|
bool cacheArgumentsError = false;
|
||||||
const Json::Value passedArgs = request.Data[kCACHE_ARGUMENTS_KEY];
|
const Json::Value passedArgs = request.Data[kCACHE_ARGUMENTS_KEY];
|
||||||
if (!passedArgs.isNull()) {
|
if (!passedArgs.isNull()) {
|
||||||
|
|
Loading…
Reference in New Issue