Skip to content

Commit

Permalink
Potential not skipping skipped container in a group
Browse files Browse the repository at this point in the history
  • Loading branch information
Commifreak committed Mar 12, 2024
1 parent 1cb9a76 commit ee92380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/ABHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ public static function resolveContainer($container, $reverse = false) {
self::setCurrentContainerName($container);
$groupMembers = $abSettings->getContainerGroups($container['Name']);
self::backupLog("Reached a group: " . $container['Name'], self::LOGLEVEL_DEBUG);
$sortedGroupContainers = self::sortContainers($dockerContainers, $abSettings->containerGroupOrder[$container['Name']], $reverse, false, $groupMembers);
$sortedGroupContainers = self::sortContainers($dockerContainers, $abSettings->containerGroupOrder[$container['Name']], $reverse, true, $groupMembers);
self::backupLog("Containers in this group: " . implode(', ', array_column($sortedGroupContainers, 'Name')), self::LOGLEVEL_DEBUG);
return $sortedGroupContainers;
}
Expand Down

0 comments on commit ee92380

Please sign in to comment.