-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Description
Hi,
I tried to implement a custom HystrixPropertiesStrategy, based on our company configuration mechanism. I was wondering if it is possible to get rid of the Archaius dependency as I really do not want to use it.
Indeed, any HystrixCommandProperties implementation need to call the super() constructor which enables Archaius class access.
Another option is to implement an configuration datasource for Archaius based on our configuration mechanism. I'm not a big fan of it for different reasons. The main one is the fact that I am currently developing a library, and archaius comes with guava and commons-everything dependencies. Therefore I will force library client to get those dependencies, adding many potential conflict on their side.
Am I missing something important there ? Is there a better way?
Thank you!
David