[
https://issues.apache.org/jira/browse/IGNITE-21388?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kirill Gusakov updated IGNITE-21388:
------------------------------------
Description:
At the moment we have the following workaround in the LogicalNode constructor
{code:java}
this.storageProfiles = storageProfiles == null ||
storageProfiles.isEmpty() ? List.of("default") : storageProfiles;
{code}
to fix some tests, I suppose. We need to remove this workaround and fix all
failed tests, if any.
*Update*
Looks like the problems observed in the:
* DistributionZoneManagerAlterFilterTest
* DistributionZoneManagerFilterTest
* ItLogicalTopologyTest (the tests itself was fixed for the current workaround)
was:
At the moment we have the following workaround in the LogicalNode constructor
{code:java}
this.storageProfiles = storageProfiles == null ||
storageProfiles.isEmpty() ? List.of("default") : storageProfiles;
{code}
to fix some tests, I suppose. We need to remove this workaround and fix all
failed tests, if any.
> Remove default storage profile for LogicalNode
> ----------------------------------------------
>
> Key: IGNITE-21388
> URL: https://issues.apache.org/jira/browse/IGNITE-21388
> Project: Ignite
> Issue Type: Improvement
> Reporter: Kirill Gusakov
> Priority: Major
> Labels: ignite-3
>
> At the moment we have the following workaround in the LogicalNode constructor
> {code:java}
> this.storageProfiles = storageProfiles == null ||
> storageProfiles.isEmpty() ? List.of("default") : storageProfiles;
> {code}
> to fix some tests, I suppose. We need to remove this workaround and fix all
> failed tests, if any.
>
> *Update*
> Looks like the problems observed in the:
> * DistributionZoneManagerAlterFilterTest
> * DistributionZoneManagerFilterTest
> * ItLogicalTopologyTest (the tests itself was fixed for the current
> workaround)
--
This message was sent by Atlassian Jira
(v8.20.10#820010)