-
Notifications
You must be signed in to change notification settings - Fork 241
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
made InstanceConfig take service, cluster and instance as args #167
Conversation
I believe this is a good thing, and will make our code simpler in general because we will need to just pass this object around and the metadata will come with it. It also enables the possibility for us to set environment variables in each app with this metadata, which is kinda something I've wanted for a while. I would like a second opinion from someone who knows more about OOP in python. @EvanKrall or @Rob-Johnson ? |
Looking. |
a159412
to
60ea622
Compare
I'll fix up the general_itests right now |
I think this is fine - my only groan is about |
My opinion is: Call it |
b3990ee
to
c57c8fc
Compare
c57c8fc
to
9443e45
Compare
…actor made InstanceConfig take service, cluster and instance as args
InstanceConfig and it's children MesosServiceConfig and ChronosJobConfig now directly store service name, cluster and instance. This should enable some cleaner code in the future.