diff --git a/docker/app/version.json b/docker/app/version.json index a6208ed..052b8ee 100644 --- a/docker/app/version.json +++ b/docker/app/version.json @@ -1,5 +1,5 @@ { "version": "2.0.0", - "build_date": "2025-10-27T19:20:48.605Z", + "build_date": "2025-10-28T14:54:40.191Z", "git_commit": "local-dev" } \ No newline at end of file diff --git a/lib/graph-db-stack.ts b/lib/graph-db-stack.ts index 651fb76..a1d2e8a 100644 --- a/lib/graph-db-stack.ts +++ b/lib/graph-db-stack.ts @@ -622,13 +622,20 @@ export class GraphDbStack extends cdk.Stack { dataLoaderLambda.addToRolePolicy(createDynamoDBPolicy(bulkLoadLogTable.tableName)); dataLoaderLambda.addToRolePolicy(createS3Policy(etlDataBucket.bucketName)); - // S3 notification for data loading + // S3 notification for data loading - vertices etlDataBucket.addEventNotification( s3.EventType.OBJECT_CREATED, new s3n.LambdaDestination(dataLoaderLambda), { prefix: 'output/' } ); + // S3 notification for data loading - edges + etlDataBucket.addEventNotification( + s3.EventType.OBJECT_CREATED, + new s3n.LambdaDestination(dataLoaderLambda), + { prefix: 'output-edges/' } + ); + // Save outputs to temp files this.saveOutputsToFiles(); diff --git a/ui/version.json b/ui/version.json index a6208ed..052b8ee 100644 --- a/ui/version.json +++ b/ui/version.json @@ -1,5 +1,5 @@ { "version": "2.0.0", - "build_date": "2025-10-27T19:20:48.605Z", + "build_date": "2025-10-28T14:54:40.191Z", "git_commit": "local-dev" } \ No newline at end of file