Skip to content

Commit

Permalink
Fix failed lambda execution crashing coordinator
Browse files Browse the repository at this point in the history
  • Loading branch information
Siegrift committed Dec 1, 2022
1 parent d594358 commit 164682a
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions packages/airnode-node/src/workers/cloud-platforms/aws.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { logger } from '@api3/airnode-utilities';
import { goSync } from '@api3/promise-utils';
import AWS from 'aws-sdk';
import { WorkerParameters, WorkerResponse } from '../../types';

export function spawn(params: WorkerParameters): Promise<WorkerResponse> {
// lambda.invoke is synchronous so we need to wrap this in a promise
return new Promise((resolve, reject) => {
return new Promise((spawnResolve, spawnReject) => {
// Uses the current region by default
const lambda = new AWS.Lambda();

Expand All @@ -15,12 +17,32 @@ export function spawn(params: WorkerParameters): Promise<WorkerResponse> {
Payload: JSON.stringify(params.payload),
};

const resolve: typeof spawnResolve = (value) => {
logger.debug(`Successful Lambda response: ${value}`);
spawnResolve(value);
};

const reject: typeof spawnReject = (error) => {
logger.debug(`Lambda invocation or execution failed. Response: ${error}`);
spawnReject(error);
};

// The Lambda invocation callback populates the error (first argument) only when the invocation fails (e.g. status
// code is 400) or the request is not parsed properly by the SDK and can't be invoked. For errors and timeouts that
// happen inside the invoked lambda have "data.FunctionError" and "data.Payload.errorMessage" populated instead.
// See: https://stackoverflow.com/q/42672023 and https://stackoverflow.com/q/48644093
lambda.invoke(options, (err, data) => {
if (err) {
reject(err);
return;
}
resolve(JSON.parse(JSON.parse(data.Payload as string).body) as WorkerResponse);
if (err) return reject(err);

if (data.FunctionError) return reject(data.Payload);

const goPayload = goSync(() => JSON.parse(data.Payload?.toString() ?? ''));
if (!goPayload.success) return reject(goPayload.error);

const goBody = goSync(() => JSON.parse(goPayload.data.body));
if (!goBody.success) return reject(goBody.error);

resolve(goBody.data as WorkerResponse);
});
});
}

0 comments on commit 164682a

Please sign in to comment.