-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: [alert] allow decimal for alert threshold value #17751
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -266,6 +266,9 @@ def test_operator_validator(setup_database): | |
# Test passing with result that equals threshold | ||
assert operator_validator(alert2, '{"op": "==", "threshold": 55}') is True | ||
|
||
# Test passing with result that equals decimal threshold | ||
assert operator_validator(alert2, '{"op": ">", "threshold": 54.999}') is True | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test is for the old alerts code base. This test can be added here: https://github.com/apache/superset/blob/master/tests/integration_tests/reports/commands_tests.py#L414 Optional (but would be great). Adding integration API tests to assert bad and good |
||
|
||
|
||
@pytest.mark.parametrize( | ||
"description, query, validator_type, config", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it doesn't need to be a double right? an integer is still fine. do we even need the tooltip now? Or if you want to add it, you could make it "Threshold can be an integer or a float"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
double precision number could be integer or float right?
And, if you type in
3.14159265358979323846264338327950288419716939937510
it will be truncated to3.141592653589793
by backend. I think it is necessary to let users know there is a limit.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, i got confused by the fact that the schema called it a
float
, but python calls its doubles floats 🤦 carry on