Merge branch 'master' into dependabot/github_actions/actions/setup-java-5

This commit is contained in:
Siri Varma Vegiraju 2025-08-27 06:25:39 -07:00 committed by GitHub
commit df814c1543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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;
} }

View File

@ -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"));
} }
} }