-
Notifications
You must be signed in to change notification settings - Fork 42
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
Adding S3 Compatible Storage Support and Changing "timeout" to "frequency" #2
Conversation
Adding s3 endpoint
Modifying timeout to frequency
Removing binary
In general I probably won't want to rename properties based on a particular individuals desires because it would lead to a lot of churn for any existing users of the application - but in this particular case, I think renaming timeout to frequency (or interval or something like that) makes sense. I'll see if I can get this merged in today. |
@nehrman Are you able to run the Go formatter on your PR? It looks like the |
@@ -13,7 +13,7 @@ import ( | |||
type Configuration struct { | |||
Address string `json:"addr"` | |||
Retain int64 `json:"retain"` | |||
Timeout string `json:"freq"` | |||
Frequency string `json:"frequency"` |
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 like the formatter needs to be run here
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.
Should be good
Thank you for the PR. I've gone and merged it, and built a new release (v0.1.0) for you to use. |
Hi,
So I recreated a PR without the binary and with the last changes I made about timeout.
My customer asked to change this as this was not very clear to him and he prefers to have "frequency" instead.