-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
bugSomething isn't workingSomething isn't workingfixedBug got fixed or found a solutionBug got fixed or found a solution
Description
Is the behavior of always succeeding regarding to RuleEngine.State on purpose? See line 114
aggregator-cli/src/aggregator-ruleng/RuleEngine.cs
Lines 101 to 114 in 3916231
| if (result.Exception != null) | |
| { | |
| logger.WriteError($"Rule failed with {result.Exception}"); | |
| State = EngineState.Error; | |
| } | |
| else if (result.ReturnValue != null) | |
| { | |
| logger.WriteInfo($"Rule succeeded with {result.ReturnValue}"); | |
| } | |
| else | |
| { | |
| logger.WriteInfo($"Rule succeeded, no return value"); | |
| } | |
| State = EngineState.Success; |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingfixedBug got fixed or found a solutionBug got fixed or found a solution