From 08fa995497df8b6e1149b92bf459b4fe220d670a Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Tue, 25 Mar 2025 17:35:16 -0400 Subject: [PATCH] Fix dir name --- .../samples/nexuscontextpropagation/caller/CallerStarter.java | 2 +- .../samples/nexuscontextpropagation/caller/CallerWorker.java | 2 +- .../nexuscontextpropagation/handler/HandlerWorker.java | 4 ++-- .../{propogation => propagation}/MDCContextPropagator.java | 2 +- .../NexusMDCContextInterceptor.java | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename core/src/main/java/io/temporal/samples/nexuscontextpropagation/{propogation => propagation}/MDCContextPropagator.java (97%) rename core/src/main/java/io/temporal/samples/nexuscontextpropagation/{propogation => propagation}/NexusMDCContextInterceptor.java (98%) diff --git a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerStarter.java b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerStarter.java index 823c3ccea..9a765c9c3 100644 --- a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerStarter.java +++ b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerStarter.java @@ -27,7 +27,7 @@ import io.temporal.samples.nexus.caller.HelloCallerWorkflow; import io.temporal.samples.nexus.options.ClientOptions; import io.temporal.samples.nexus.service.NexusService; -import io.temporal.samples.nexuscontextpropagation.propogation.MDCContextPropagator; +import io.temporal.samples.nexuscontextpropagation.propagation.MDCContextPropagator; import java.util.Collections; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerWorker.java b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerWorker.java index 387ea01be..86fc0b064 100644 --- a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerWorker.java +++ b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerWorker.java @@ -21,7 +21,7 @@ import io.temporal.client.WorkflowClient; import io.temporal.samples.nexus.options.ClientOptions; -import io.temporal.samples.nexuscontextpropagation.propogation.NexusMDCContextInterceptor; +import io.temporal.samples.nexuscontextpropagation.propagation.NexusMDCContextInterceptor; import io.temporal.worker.Worker; import io.temporal.worker.WorkerFactory; import io.temporal.worker.WorkerFactoryOptions; diff --git a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/handler/HandlerWorker.java b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/handler/HandlerWorker.java index d2536bc41..e476924e1 100644 --- a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/handler/HandlerWorker.java +++ b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/handler/HandlerWorker.java @@ -22,8 +22,8 @@ import io.temporal.client.WorkflowClient; import io.temporal.client.WorkflowClientOptions; import io.temporal.samples.nexus.options.ClientOptions; -import io.temporal.samples.nexuscontextpropagation.propogation.MDCContextPropagator; -import io.temporal.samples.nexuscontextpropagation.propogation.NexusMDCContextInterceptor; +import io.temporal.samples.nexuscontextpropagation.propagation.MDCContextPropagator; +import io.temporal.samples.nexuscontextpropagation.propagation.NexusMDCContextInterceptor; import io.temporal.worker.Worker; import io.temporal.worker.WorkerFactory; import io.temporal.worker.WorkerFactoryOptions; diff --git a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/MDCContextPropagator.java b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/MDCContextPropagator.java similarity index 97% rename from core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/MDCContextPropagator.java rename to core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/MDCContextPropagator.java index db75395fd..a8b65be2f 100644 --- a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/MDCContextPropagator.java +++ b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/MDCContextPropagator.java @@ -17,7 +17,7 @@ * permissions and limitations under the License. */ -package io.temporal.samples.nexuscontextpropagation.propogation; +package io.temporal.samples.nexuscontextpropagation.propagation; import io.temporal.api.common.v1.Payload; import io.temporal.common.context.ContextPropagator; diff --git a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/NexusMDCContextInterceptor.java b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/NexusMDCContextInterceptor.java similarity index 98% rename from core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/NexusMDCContextInterceptor.java rename to core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/NexusMDCContextInterceptor.java index 944767e4b..f2fa07f23 100644 --- a/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/NexusMDCContextInterceptor.java +++ b/core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/NexusMDCContextInterceptor.java @@ -17,7 +17,7 @@ * permissions and limitations under the License. */ -package io.temporal.samples.nexuscontextpropagation.propogation; +package io.temporal.samples.nexuscontextpropagation.propagation; import io.nexusrpc.OperationException; import io.nexusrpc.handler.OperationContext;