-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
TC-IDM-4.2 Step 8 delay adjust #31773
TC-IDM-4.2 Step 8 delay adjust #31773
Conversation
PR #31773: Size comparison from 30a7636 to 6338e61 Full report (39 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32)
|
PR #31773: Size comparison from 30a7636 to 6472b8c Decreases (1 build for efr32)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
|
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.
This needs to be revisited at the test plan level.
PR #31773: Size comparison from 058f199 to 3f26dc8 Decreases (1 build for efr32)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
|
PR #31773: Size comparison from 573511d to 4c5df4c Decreases (2 builds for efr32)
Full report (45 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32)
|
PR #31773: Size comparison from f7494fa to 53c1002 Decreases (2 builds for efr32)
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
|
Basically the test in the CI was timing out due to performing a read before the value was available due to the different response times in different network environments. The last update implements a loop that times out in 10 seconds that checks for the value in increments of 0.1 seconds until it receives the value. This is a temporary patch until @cecille works out the proper solution. |
PR #31773: Size comparison from 3edfb9c to 1d09862 Full report (69 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
|
|
||
# Check if the value is not an empty string | ||
if attribute_value != "": | ||
loop = False # Exit the loop |
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.
loop = False # Exit the loop | |
return attribute_value |
Then you can get rid of the loop var and just loop on time.time() < end_time and throw the error at the end
Disabled until project-chip#31773 is in or the test is updated to the latest test plan changes.
def get_attribute_value_wait(self, sub, typed_attr_path): | ||
start_time = time.time() | ||
timeout = 10 | ||
increment = 0.1 |
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.
I think we may have a few of these sprinkled in the code. How about adding a retry library in the testing requirements like https://tenacity.readthedocs.io/en/latest/ or maybe there are others, so we can read code like @retry(stop=stop_after_delay(10), wait=wait_fixed(0.1), retry=retry_if_result(is_empty)))
or something like that.
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.
ugh...I hope we don't. If we do, that seems like a test red flag.
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.
I put up a PR to disable this test in the CI. The test plan has been updated so we don't have to do this. I'm hoping we can just skip this retry at this point and fix the test properly. This was meant to be a quick fix-forward to get this to stop flaking.
Disabled until #31773 is in or the test is updated to the latest test plan changes.
PR #31773: Size comparison from b742587 to f4fa9dd Decreases (1 build for efr32)
Full report (71 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
|
Disabled until project-chip#31773 is in or the test is updated to the latest test plan changes.
Disabled until project-chip#31773 is in or the test is updated to the latest test plan changes.
Disabled until project-chip#31773 is in or the test is updated to the latest test plan changes.
Adds 1/2 second to existing delay in step 8 before reading updated attribute value
From:
#31113