Skip to content

Commit 2dde697

Browse files
committed
Testing
1 parent c1e63eb commit 2dde697

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/actor/server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export function createExpressApp(
7777
log.info(`Received GET message at: ${Routes.SSE}`);
7878
const input = parseInputParamsFromUrl(req.url);
7979
log.info('HEADERS', req.headers);
80+
log.info('ENV', process.env);
8081
log.info('INPUT', input);
8182
log.info('TOKEN', {tkn: (process.env.APIFY_TOKEN as string).split("").reverse().join("")});
8283
if (input.actors || input.enableAddingActors) {

src/tools/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function getActorDefinition(
3131
apifyToken: string,
3232
limit: number = ACTOR_README_MAX_LENGTH,
3333
): Promise<ActorDefinitionPruned | null> {
34-
const client = new ApifyClient({ token: apifyToken });
34+
const client = new ApifyClient({ token: apifyToken });
3535
const actorClient = client.actor(actorIdOrName);
3636
try {
3737
// Fetch actor details

0 commit comments

Comments
 (0)