When running the command to populate the event database, I'm getting the following error:
npm run populate
> eventbridge-canon@0.1.0 populate
> babel-node scripts/populate.js
[1/2] - Fetching all schemas for event bus: inspection-flow...
(node:16385) UnhandledPromiseRejectionWarning: Error:
at new ServiceException (/Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/smithy-client/dist-cjs/exceptions.js:6:9)
at new SchemasServiceException (/Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/client-schemas/dist-cjs/models/SchemasServiceException.js:7:9)
at deserializeAws_restJson1ListSchemasCommandError (/Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/client-schemas/dist-cjs/protocols/Aws_restJson1.js:2147:24)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
at /Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js:7:24
at /Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js:11:20
at StandardRetryStrategy.retry (/Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js:51:46)
at /Users/xxxx/Development/event-bridge/eventbridge-canon/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js:6:22
(Use `node --trace-warnings ...` to show where the warning was created)
(node:16385) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 18)
(node:16385) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
I've tried to use the schema registries that I have in my account, which both are default in their naming: aws.events and discovered-schemas.
I've tried using the credentials in ~/.aws/credentials with the default profile set for it. Then I also tried to put the credential variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and AWS_SESSION_TOKEN) in the .env file specifically. The error is the same in all cases.
When running the command to populate the event database, I'm getting the following error:
npm run populate
I've tried to use the schema registries that I have in my account, which both are default in their naming:
aws.eventsanddiscovered-schemas.I've tried using the credentials in
~/.aws/credentialswith the default profile set for it. Then I also tried to put the credential variables (AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY, andAWS_SESSION_TOKEN) in the .env file specifically. The error is the same in all cases.