Committed by
Gerrit Code Review
Fixed setting of flowPriority and flowTimeout default values after scr property-delete
Change-Id: I3988e4912b91b82f56955a3c9868b74c498a03d5
Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -331,6 +331,7 @@ public class ReactiveForwarding { | ... | @@ -331,6 +331,7 @@ public class ReactiveForwarding { |
| 331 | Integer flowTimeoutConfigured = | 331 | Integer flowTimeoutConfigured = |
| 332 | getIntegerProperty(properties, "flowTimeout"); | 332 | getIntegerProperty(properties, "flowTimeout"); |
| 333 | if (flowTimeoutConfigured == null) { | 333 | if (flowTimeoutConfigured == null) { |
| 334 | + flowTimeout = DEFAULT_TIMEOUT; | ||
| 334 | log.info("Flow Timeout is not configured, default value is {}", | 335 | log.info("Flow Timeout is not configured, default value is {}", |
| 335 | flowTimeout); | 336 | flowTimeout); |
| 336 | } else { | 337 | } else { |
| ... | @@ -341,6 +342,7 @@ public class ReactiveForwarding { | ... | @@ -341,6 +342,7 @@ public class ReactiveForwarding { |
| 341 | Integer flowPriorityConfigured = | 342 | Integer flowPriorityConfigured = |
| 342 | getIntegerProperty(properties, "flowPriority"); | 343 | getIntegerProperty(properties, "flowPriority"); |
| 343 | if (flowPriorityConfigured == null) { | 344 | if (flowPriorityConfigured == null) { |
| 345 | + flowPriority = DEFAULT_PRIORITY; | ||
| 344 | log.info("Flow Priority is not configured, default value is {}", | 346 | log.info("Flow Priority is not configured, default value is {}", |
| 345 | flowPriority); | 347 | flowPriority); |
| 346 | } else { | 348 | } else { | ... | ... |
-
Please register or login to post a comment