@pattern-stack/codegen 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1123,8 +1123,9 @@ var MemoryJobOrchestrator = class {
1123
1123
  }
1124
1124
  const meta = registration.meta;
1125
1125
  const HandlerClass = registration.handlerClass;
1126
- const handler = this.moduleRef ? await this.moduleRef.create(
1127
- HandlerClass
1126
+ const handler = this.moduleRef ? this.moduleRef.get(
1127
+ HandlerClass,
1128
+ { strict: false }
1128
1129
  ) : new HandlerClass();
1129
1130
  const ctx = {
1130
1131
  input: run.input,