-
Notifications
You must be signed in to change notification settings - Fork 84
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
refactor: Renamed GolangRuntime to FunctionPipelineRuntime #1229
refactor: Renamed GolangRuntime to FunctionPipelineRuntime #1229
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1229 +/- ##
=======================================
Coverage 66.70% 66.70%
=======================================
Files 39 39
Lines 3325 3325
=======================================
Hits 2218 2218
Misses 961 961
Partials 146 146
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
internal/runtime/runtime.go
Outdated
@@ -66,8 +66,8 @@ func NewFunctionPipeline(id string, topics []string, transforms []interfaces.App | |||
return pipeline | |||
} | |||
|
|||
// GolangRuntime represents the golang runtime environment | |||
type GolangRuntime struct { | |||
// AppServiceRuntime represents the golang runtime environment |
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.
// AppServiceRuntime represents the golang runtime environment | |
// AppServiceRuntime represents the runtime environment for App Services' Functions Pipelines |
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.
Would a better name be FunctionsPipelineRuntime
or PipelineRuntime
since that is what the runtime is about?
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.
I think FunctionsPipelinetRuntime
would be more descriptive
…ndry#1199 Signed-off-by: Marc-Philippe Fuller <[email protected]>
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.
Approve
Signed-off-by: Marc-Philippe Fuller <[email protected]>
…ndry#1199 Signed-off-by: Marc-Philippe Fuller <[email protected]>
c13b314
to
c8c98ea
Compare
I have rebased and fixed all conflicts |
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.
LGTM
c8c98ea
to
9840e4e
Compare
rename Golangruntine to FunctionPipelineRuntime for better readability Closes edgexfoundry#1199 Signed-off-by: Marc-Philippe Fuller <[email protected]>
9840e4e
to
0ee5f87
Compare
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.
LGTM
Signed-off-by: Marc-Philippe Fuller [email protected]
If your build fails due to your commit message not passing the build checks, please review the guidelines here: https://github.com/edgexfoundry/app-functions-sdk-go/blob/main/.github/CONTRIBUTING.md
PR Checklist
Please check if your PR fulfills the following requirements:
BREAKING CHANGE:
describing the break)Testing Instructions
make test
New Dependency Instructions (If applicable)
N/A