Skip to content

Commit 42086f6

Browse files
authored
Fix directory name (#728)
1 parent d6629ab commit 42086f6

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerStarter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import io.temporal.samples.nexus.caller.HelloCallerWorkflow;
2828
import io.temporal.samples.nexus.options.ClientOptions;
2929
import io.temporal.samples.nexus.service.NexusService;
30-
import io.temporal.samples.nexuscontextpropagation.propogation.MDCContextPropagator;
30+
import io.temporal.samples.nexuscontextpropagation.propagation.MDCContextPropagator;
3131
import java.util.Collections;
3232
import org.slf4j.Logger;
3333
import org.slf4j.LoggerFactory;

core/src/main/java/io/temporal/samples/nexuscontextpropagation/caller/CallerWorker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import io.temporal.client.WorkflowClient;
2323
import io.temporal.samples.nexus.options.ClientOptions;
24-
import io.temporal.samples.nexuscontextpropagation.propogation.NexusMDCContextInterceptor;
24+
import io.temporal.samples.nexuscontextpropagation.propagation.NexusMDCContextInterceptor;
2525
import io.temporal.worker.Worker;
2626
import io.temporal.worker.WorkerFactory;
2727
import io.temporal.worker.WorkerFactoryOptions;

core/src/main/java/io/temporal/samples/nexuscontextpropagation/handler/HandlerWorker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
import io.temporal.client.WorkflowClient;
2323
import io.temporal.client.WorkflowClientOptions;
2424
import io.temporal.samples.nexus.options.ClientOptions;
25-
import io.temporal.samples.nexuscontextpropagation.propogation.MDCContextPropagator;
26-
import io.temporal.samples.nexuscontextpropagation.propogation.NexusMDCContextInterceptor;
25+
import io.temporal.samples.nexuscontextpropagation.propagation.MDCContextPropagator;
26+
import io.temporal.samples.nexuscontextpropagation.propagation.NexusMDCContextInterceptor;
2727
import io.temporal.worker.Worker;
2828
import io.temporal.worker.WorkerFactory;
2929
import io.temporal.worker.WorkerFactoryOptions;

core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/MDCContextPropagator.java renamed to core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/MDCContextPropagator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* permissions and limitations under the License.
1818
*/
1919

20-
package io.temporal.samples.nexuscontextpropagation.propogation;
20+
package io.temporal.samples.nexuscontextpropagation.propagation;
2121

2222
import io.temporal.api.common.v1.Payload;
2323
import io.temporal.common.context.ContextPropagator;

core/src/main/java/io/temporal/samples/nexuscontextpropagation/propogation/NexusMDCContextInterceptor.java renamed to core/src/main/java/io/temporal/samples/nexuscontextpropagation/propagation/NexusMDCContextInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* permissions and limitations under the License.
1818
*/
1919

20-
package io.temporal.samples.nexuscontextpropagation.propogation;
20+
package io.temporal.samples.nexuscontextpropagation.propagation;
2121

2222
import io.nexusrpc.OperationException;
2323
import io.nexusrpc.handler.OperationContext;

0 commit comments

Comments
 (0)