We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb6d7a commit 18b2194Copy full SHA for 18b2194
core/flamingock-core/src/main/java/io/flamingock/internal/core/builder/runner/CliRunner.java
@@ -92,7 +92,7 @@ public void run() {
92
93
private void writeResponse(AbstractOperationResult result, Throwable error, long durationMs) {
94
ResponseEnvelope envelope;
95
- String operationName = flamingockArgs.getOperation().isPresent() ? flamingockArgs.getOperation().get().name() : "unknown operation";
+ String operationName = flamingockArgs.getOperation().isPresent() ? flamingockArgs.getOperation().get().name() : "unknown";
96
97
if (error != null) {
98
envelope = ResponseEnvelope.failure(operationName, ResponseError.from(error), durationMs);
0 commit comments