Working on the Admin GUI, I found an unexpected behaviour when filtering some TaskOption properties: max-retry and priority.
They are the only numerical properties of the TaskOption. To explain it shortly, only the filters operations Equal (value: 0) and Not Equal (value: 1) are providing a result.
Core version : v0.17.0
I'm running armonik with the "all-in-one" deployment and used "unified api" as a sample.
I've send this data to the TaskClient (you can replace the operator: 2 by 3, 4, or 5 to have the behaviour):
Maybe these numerical properties are filtered with string operations (contains, start with...), which is not possible with a number, and so raise an error/does not return anything.
Working on the Admin GUI, I found an unexpected behaviour when filtering some
TaskOption
properties:max-retry
andpriority
.They are the only numerical properties of the TaskOption. To explain it shortly, only the filters operations
Equal
(value: 0) andNot Equal
(value: 1) are providing a result.Core version :
v0.17.0
I'm running armonik with the "all-in-one" deployment and used "unified api" as a sample.
I've send this data to the
TaskClient
(you can replace the operator: 2 by 3, 4, or 5 to have the behaviour):Expected result: a list of Tasks
Received (my SEQ doesn't have anything):
Ideas: