-
Notifications
You must be signed in to change notification settings - Fork 594
Conversation
thinker0
commented
Apr 18, 2022
•
edited
Loading
edited
- Fix legacy of HealthManager
- Fix Sfl4jBridge (Unsupported)
- Add healthcheck API for heron-tracker, heron-ui
- Fix heron-tracker, heron-ui
Fix HealthManager
94d4d01
to
b6133fe
Compare
What was the error encountered that required the change from |
I approved because Python typing will, rather annoyingly, allow you to achieve what follows. I agree with the need for consistency. float_Val: float = 9.19
print(float_Val, type(float_Val))
str_Val: str = float_Val
print(str_Val, type(str_Val))
str_Val = 919
print(str_Val, type(str_Val))
"""
9.19 <class 'float'>
9.19 <class 'float'>
919 <class 'int'>
""" |
incubator-heron/heron/tools/tracker/tests/python/query_operator_unittest.py Lines 41 to 57 in 700125f
In the internal UnitTest, it seems to be a String. |
Should the unit test be updated to be a float instead of string? I did not catch that. When I started working on the last PR, it was originally an We should make sure we are setting the type consistently. Should this line of code also be updated to be a Edit: Also, does this other line, which was unchanged in the prior PR, help the choice to use |
humm. Conflit is occurring in several places ㅠ.ㅠ |
I fixed it on my CentOS 7. |
|
|
Nothing
I don't think you need to change this part. |
There was a failing test for killing topologies but I have seen that fail intermittently before. I did restart the CI pipeline. Is the downgrade of the I do not see any issues with using the I will request @nicknezis to have a look at the tracker change because he has spent a lot of time in it recently. |
This reverts commit a68fbde.
This was judged to be a cause other than the cause of gcc, so it was restored to its original state. |