github Netflix/Hystrix 1.3.6
Version 1.3.6

latest releases: v1.5.18, v1.5.17, v1.5.16...
10 years ago
  • Pull 181 [hystrix-contrib/hystrix-clj] Making Command keys quantified by namespaces
  • Pull 182 Removing unused Legend component latent. Removed from html templates/css
  • Pull 183 Bugfix to HystrixBadRequestException handling
  • Pull 184 BugFix: queue() BadRequestException Handling on Cached Response
  • Pull 185 BugFix: Observable.observeOn Scheduler Lost RequestContext
  • 0fb0d3d RxJava 0.14

Breaking Change for hystrix-clj: The default command key generated by the defcommand macro is now the fully qualified name. For example:

(ns com.netflix.my-service)
(defcommand my-command ...)

Will create a HystrixCommand with key com.netflix.my-service/my-command instead of just my-command. This has the following implications:

Existing Archaius or other name-based configurations must be updated.
Depending on the size of the namespace, the dashboard may now truncate the name of the command when displayed.
Note that the command key can be set manually with the :hystrix/command-key option:

(defcommand my-command
{:hystrix/command-key "my-command"}
... command body ...)
Now the command key will be just "my-command", i.e. the behavior of hystrix-clj before this change.

Artifacts: Maven Central

Don't miss a new Hystrix release

NewReleases is sending notifications on new releases.