File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments