[
https://issues.apache.org/jira/browse/IGNITE-18918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Ivan Gagarkin updated IGNITE-18918:
-----------------------------------
Description:
The test depends on the count of the config changes.
The condition is never met and the test always passes.
{code:java}
if (rev == cfgGap / 2) {
log.info("Stopping METASTORAGE");
stopNode(0);
log.info("Starting METASTORAGE");
startNode(0);
log.info("Restarted METASTORAGE");
} {code}
But if change the condition to be true, the test fails.
The test should be disabled.
was:
During work on IGNITE-18576 have found out that the condition is always false.
If fix that, the test fails.
{code:java}
if (rev == cfgGap / 2) {
log.info("Stopping METASTORAGE");
stopNode(0);
log.info("Starting METASTORAGE");
startNode(0);
log.info("Restarted METASTORAGE");
} {code}
The root cause should be investigated and fixed. Then the test should be
enabled.
> Disable ItIgniteNodeRestartTest#testMetastorageStop
> ---------------------------------------------------
>
> Key: IGNITE-18918
> URL: https://issues.apache.org/jira/browse/IGNITE-18918
> Project: Ignite
> Issue Type: Bug
> Reporter: Ivan Gagarkin
> Priority: Critical
> Labels: ignite-3
>
> The test depends on the count of the config changes.
> The condition is never met and the test always passes.
> {code:java}
> if (rev == cfgGap / 2) {
> log.info("Stopping METASTORAGE");
> stopNode(0);
> log.info("Starting METASTORAGE");
> startNode(0);
> log.info("Restarted METASTORAGE");
> } {code}
> But if change the condition to be true, the test fails.
> The test should be disabled.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)