mirror of https://github.com/dapr/java-sdk.git
Merge branch 'master' into dependabot/github_actions/actions/setup-java-5
This commit is contained in:
commit
df814c1543
|
|
@ -165,7 +165,7 @@ public class WorkflowRuntimeBuilder {
|
||||||
this.activitySet.add(name);
|
this.activitySet.add(name);
|
||||||
this.activities.add(name);
|
this.activities.add(name);
|
||||||
|
|
||||||
this.logger.info("Registered Activity: {}", name);
|
this.logger.info("Registered Activity: {}", clazz.getSimpleName());
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,6 @@ public class WorkflowRuntimeBuilderTest {
|
||||||
.info(eq("Registered Workflow: {}"), eq("TestWorkflow"));
|
.info(eq("Registered Workflow: {}"), eq("TestWorkflow"));
|
||||||
|
|
||||||
verify(testLogger, times(1))
|
verify(testLogger, times(1))
|
||||||
.info(eq("Registered Activity: {}"), eq("io.dapr.workflows.runtime.WorkflowRuntimeBuilderTest.TestActivity"));
|
.info(eq("Registered Activity: {}"), eq("TestActivity"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue