-
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
Variables refactor #108
Variables refactor #108
Conversation
f5c1c43
to
8952140
Compare
7ad9e97
to
606cbdf
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.
a couple of comments. otherwise 👍 .
kernel/lib/fabutil/errors.go
Outdated
@@ -0,0 +1,23 @@ | |||
package fabutil |
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.
can we just call fabutil
util
?
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.
renamed. I try to avoid util/utils sometimes because package name collision is a bigger issue in golang and it often feels like every module has a util.
kernel/model/variables.md
Outdated
1. Scope local cache, for already resolved variables | ||
1. Parent Scope with path | ||
1. Parent Scope without path | ||
1. Binding with path | ||
1. Binding without path | ||
1. Command line override with path | ||
1. Command line override without path | ||
1. Environment variable with path | ||
1. Environment variable without path | ||
1. A constant value (used for providing defaults) |
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.
didn't we already resolve this discussion? also, this list looks like it's missing the label resolver stuff.
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.
Doc was outdated, removed.
No description provided.