szaszm commented on code in PR #2066:
URL: https://github.com/apache/nifi-minifi-cpp/pull/2066#discussion_r2665526455
##########
behave_framework/src/minifi_test_framework/core/helpers.py:
##########
@@ -82,3 +83,17 @@ def run_cmd_in_docker_image(image_name: str, cmd: str |
list, network: str) -> s
def run_shell_cmd_in_docker_image(image_name: str, cmd: str, network: str) ->
str:
return run_cmd_in_docker_image(image_name, ["/bin/sh", "-c", cmd], network)
+
+
+def retry_check(max_tries=5, retry_interval=1):
Review Comment:
I find this a bit complex, a comment describing the purpose and intended
usage would be helpful
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]