params: allow signatureversion and expires without logging

This patch considers the new expires and signatureversion parameters
valid. Without this, all calls log when using the V3 signature scheme.
This commit is contained in:
Pierre-Yves Ritschard 2018-10-15 14:15:00 +02:00
parent 84994c841f
commit 58b4e71b0e
No known key found for this signature in database
GPG Key ID: EDDCCA797A2A18C1
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,8 @@ public class ParamGenericValidationWorker implements DispatchWorker {
defaultParamNames.add(ApiConstants.CTX_DETAILS);
defaultParamNames.add(ApiConstants.UUID);
defaultParamNames.add(ApiConstants.ID);
defaultParamNames.add(ApiConstants.SIGNATURE_VERSION);
defaultParamNames.add(ApiConstants.EXPIRES);
defaultParamNames.add("_");
}