We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd61dc commit b1b2146Copy full SHA for b1b2146
src/actor/server.ts
@@ -73,10 +73,12 @@ export function createExpressApp(
73
});
74
75
app.get(Routes.SSE, async (req: Request, res: Response) => {
76
- log.info('HEADERS', req.headers);
77
try {
78
log.info(`Received GET message at: ${Routes.SSE}`);
79
const input = parseInputParamsFromUrl(req.url);
+ log.info('HEADERS', req.headers);
80
+ log.info('INPUT', input);
81
+ log.info('TOKEN', process.env.APIFY_TOKEN);
82
if (input.actors || input.enableAddingActors) {
83
await mcpServer.loadToolsFromUrl(req.url, process.env.APIFY_TOKEN as string);
84
}
0 commit comments