Fix flipper_errors_raw pipeline

Summary:
It turns out puma was erroring on the GK field inside the log json, because of improperly escaped " in the fields.

To simplify it I'm changing it to use simple comma separated key:value pairs, since they are always plain string and boolean values.
"gatekeepers":"TEST_PASSING_GK:false,TEST_FAILING_GK:false,devtools_sonar_team:false"

Reviewed By: passy

Differential Revision: D13782283

fbshipit-source-id: 3f331dc9189b1a57f69a2af0d4393baf45e1fa55
This commit is contained in:
John Knox
2019-01-23 06:52:53 -08:00
committed by Facebook Github Bot
parent ecd6935d18
commit e36b5d1ceb

View File

@@ -21,6 +21,6 @@ export default class GK {
}
static serializeGKs() {
return JSON.stringify({});
return '';
}
}