@mastra/deployer 1.33.0-alpha.6 → 1.33.0-alpha.7

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.
@@ -3284,6 +3284,10 @@ var MastraServer = class extends MastraServer$1 {
3284
3284
  }
3285
3285
  }
3286
3286
  const requestContext = this.mergeRequestContext({ paramsRequestContext, bodyRequestContext });
3287
+ this.applyRequestMetadataToContext({
3288
+ requestContext,
3289
+ getHeader: (name) => c.req.header(name)
3290
+ });
3287
3291
  c.set("requestContext", requestContext);
3288
3292
  c.set("mastra", this.mastra);
3289
3293
  c.set("registeredTools", this.tools || {});
@@ -4778,7 +4782,7 @@ async function createNodeServer(mastra, options = { tools: {} }) {
4778
4782
  }
4779
4783
  );
4780
4784
  injectWebSocket?.(server);
4781
- await mastra.startEventEngine();
4785
+ await mastra.startWorkers();
4782
4786
  return server;
4783
4787
  }
4784
4788