Sega76 commented on a change in pull request #8294:
URL: https://github.com/apache/ignite/pull/8294#discussion_r507761944
##########
File path: modules/ducktests/tests/ignitetest/services/utils/control_utility.py
##########
@@ -127,6 +132,106 @@ def tx_kill(self, **kwargs):
res = self.__parse_tx_list(output)
return res if res else output
+ def validate_indexes(self, check_assert: bool = None):
+ """
+ Validate indexes.
+ If check is true, will be return
+ """
+ data = self.__run("--cache validate_indexes")
+
+ if check_assert is not None:
+ assert (('no issues found.' in data) == check_assert), data
+
+ return data
+
+ def idle_verify(self, check_assert: bool = None):
+ """
+ Idle verify.
+ """
+ data = self.__run("--cache idle_verify")
+
+ if check_assert is not None:
+ assert (('idle_verify check has finished, no conflicts have been
found.' in data) == check_assert), data
+
+ return data
Review comment:
I think the control_utility should return a result
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]