-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow setting cumulus-message-adapter directory with env var #13
Conversation
CHANGELOG.md
Outdated
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | |||
|
|||
## [Unreleased] | |||
|
|||
- Add the `CUMULUS_MESSAGE_ADAPTER_DIR` environment variable to set the path where cumulus-message-adapter is located |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be under the ### Added
section.
test/test-index-with-dir-env.js
Outdated
@@ -0,0 +1,53 @@ | |||
/* eslint-disable require-jsdoc */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add this to test/.eslintrc.json
so that other test files get the same config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good for the most part, but with a couple small changes.
@yjpa7145 Thanks, updated with those changes. |
This is a dependency for merging this PR and releasing the first version of cumulus-ecs-task.
This lets us set the directory where cumulus-message-adapter can be found in unusual cases where it isn't the root working directory, like in the case of cumulus-ecs-task.
This PR adds tests and updates the changelog and readme.