Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

CORTX-33774: Observed multiple core dumps and m0_panic with small load #2050

Merged
merged 1 commit into from
Aug 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ def get_data_nodes(self):
machine_id_list = get_machine_id_list(self)
for machine_id in machine_id_list:
t = get_value(self, f'node>{machine_id}>type', str)
if t == 'data_node':
if re.search('data_node*', t):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a todo here to support any name with storage devices or CVG's under it.

data_nodes.append(machine_id)

# If data nodes not found
Expand Down