changed trace detail to uppercase to pass validation

This commit is contained in:
Jon Fu 2019-07-15 11:15:13 -07:00
parent 4b0fdabae5
commit 27c9414d66
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ struct DDMetricsExcludeWorkload : TestWorkload {
double movingData = wait( self->getMovingDataAmount( cx, self ) );
self->peakMovingData = std::max(self->peakMovingData, movingData);
TraceEvent("DDMetricsExcludeCheck")
.detail("movingData", movingData);
.detail("MovingData", movingData);
if( movingData == 0.0 ) {
self->ddDone = now() - startTime;
return Void();