request munging: call the stock site nemesis.dashboard.requests.normalizeParamCount function, to add in dummy parameters to requests

for #656 number 1
This commit is contained in:
Jon Atkins 2013-11-24 01:03:45 +00:00
parent 0060e8b5fc
commit 44ee4c7200

View File

@ -326,6 +326,16 @@ window.requestDataMunge = function(data) {
};
var newdata = munge(data);
try {
newdata = nemesis.dashboard.requests.normalizeParamCount(newdata);
} catch(e) {
if (!window._mungeHaveLoggedError) {
console.warn('Failed to call the stock site normalizeParamCount() function: '+e);
window._mungeHaveLoggedError = true;
}
}
return newdata;
}