-
Notifications
You must be signed in to change notification settings - Fork 640
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
[ISSUE #481] Use YAML file to store configuration #3988
base: master
Are you sure you want to change the base?
Conversation
Hi @pandaapo This feature has been implemented. You can refer to the specific class org.apache.eventmesh.common.config.FileLoad. |
Thanks for your comment.
If eventmesh.yaml can be loaded in some way currently, please tell me and I will verify if it will be affected by my modifications. |
Codecov Report
@@ Coverage Diff @@
## master #3988 +/- ##
============================================
- Coverage 14.22% 14.22% -0.01%
Complexity 1328 1328
============================================
Files 580 583 +3
Lines 28856 29013 +157
Branches 2792 2810 +18
============================================
+ Hits 4105 4127 +22
- Misses 24361 24494 +133
- Partials 390 392 +2
... and 16 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
I think we should only use one configuration file, either Considering that connectors all use YAML configuration files, the presence of In our project, we currently have both |
Thanks for your review. But sorry, many of your points I couldn't agree with, and they were even a bit strange to me. No offense, I'm willing to wait for more members of the community to express their views on these points of yours. If there are no objections, I will revise. |
It has been 60 days since the last activity on this pull request. I am reaching out here to gently remind you that the Apache EventMesh community values every pull request, and please feel free to get in touch with the reviewers at any time. They are available to assist you in advancing the progress of your pull request and offering the latest feedback. If you encounter any challenges during development, seeking support within the community is encouraged. We sincerely appreciate your contributions to Apache EventMesh. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3988 +/- ##
============================================
- Coverage 14.22% 14.22% -0.01%
Complexity 1328 1328
============================================
Files 580 583 +3
Lines 28856 29013 +157
Branches 2792 2810 +18
============================================
+ Hits 4105 4127 +22
- Misses 24361 24494 +133
- Partials 390 392 +2 ☔ View full report in Codecov by Sentry. |
Any progress we can make here? |
It has been 60 days since the last activity on this pull request. I am reaching out here to gently remind you that the Apache EventMesh community values every pull request, and please feel free to get in touch with the reviewers at any time. They are available to assist you in advancing the progress of your pull request and offering the latest feedback. If you encounter any challenges during development, seeking support within the community is encouraged. We sincerely appreciate your contributions to Apache EventMesh. |
It has been 60 days since the last activity on this pull request. I am reaching out here to gently remind you that the Apache EventMesh community values every pull request, and please feel free to get in touch with the reviewers at any time. They are available to assist you in advancing the progress of your pull request and offering the latest feedback. If you encounter any challenges during development, seeking support within the community is encouraged. We sincerely appreciate your contributions to Apache EventMesh. |
Fixes #481.
Motivation
See "Enhancement Request" in issue.
Modifications
The default config file format keeps
eventmesh.properties
. When user set only config file in yaml / yml format, EventMesh will find it and load it.Documentation