Skip to content

Commit

Permalink
Also update the HystrixCommandProperties.Setter
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jacobs committed Apr 6, 2015
1 parent bbd7d22 commit 51063b9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,10 @@ public Setter withExecutionIsolationThreadInterruptOnTimeout(boolean value) {
return this;
}

@Deprecated //prefer {@link #withExecutionTimeoutInMilliseconds}
/**
* @deprecated As of 1.4.0, replaced with {@link #withExecutionTimeoutInMilliseconds(int)}. Timeouts are no longer applied only to thread-isolated commands, so a thread-specific name is misleading
*/
@Deprecated
public Setter withExecutionIsolationThreadTimeoutInMilliseconds(int value) {
this.executionTimeoutInMilliseconds = value;
return this;
Expand Down

0 comments on commit 51063b9

Please sign in to comment.