#604 set use qos based on what we have in docs (#627)

This commit is contained in:
Tom Pallister
2018-09-20 08:04:15 +01:00
committed by GitHub
parent 669ece07b2
commit 388b1fad90
2 changed files with 36 additions and 17 deletions

View File

@ -24,7 +24,7 @@
public string TimeoutStrategy { get; }
public bool UseQos => ExceptionsAllowedBeforeBreaking > 0 && TimeoutValue > 0;
public bool UseQos => ExceptionsAllowedBeforeBreaking > 0 || TimeoutValue > 0;
public string Key { get; }
}