Skip to content

Commit c495e7b

Browse files
authored
fix error message for worker factory (#788)
1 parent a1196b9 commit c495e7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/uber/cadence/worker/WorkerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public synchronized void start() {
199199
statusErrorMessage,
200200
"start WorkerFactory",
201201
state.name(),
202-
String.format("%s, %s", State.Initial.name(), State.Initial.name())));
202+
String.format("%s, %s", State.Initial.name(), State.Started.name())));
203203
if (state == State.Started) {
204204
return;
205205
}

0 commit comments

Comments
 (0)