We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbec72e commit 91df9fbCopy full SHA for 91df9fb
src/main/java/com/google/devtools/build/lib/worker/JsonWorkerProtocol.java
@@ -48,7 +48,10 @@ final class JsonWorkerProtocol implements WorkerProtocolImpl {
48
49
@Override
50
public void putRequest(WorkRequest request) throws IOException {
51
+ // WorkRequests are serialized according to ndjson spec.
52
+ // https://github.com/ndjson/ndjson-spec
53
jsonPrinter.appendTo(request, jsonWriter);
54
+ jsonWriter.append(System.lineSeparator());
55
jsonWriter.flush();
56
}
57
0 commit comments