From 64963b741b89d5ee8c45fe3c5c14f132dded6776 Mon Sep 17 00:00:00 2001 From: Dimitrios Christidis Date: Wed, 26 Feb 2025 09:04:53 +0100 Subject: [PATCH] Lifetime Model: Fix counting of containers #7439 --- lib/rucio/client/commands/bin_legacy/rucio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rucio/client/commands/bin_legacy/rucio.py b/lib/rucio/client/commands/bin_legacy/rucio.py index ecb8f80d94..b83e1d6e55 100644 --- a/lib/rucio/client/commands/bin_legacy/rucio.py +++ b/lib/rucio/client/commands/bin_legacy/rucio.py @@ -2042,6 +2042,7 @@ def add_lifetime_exception(args, client, logger, console, spinner): else: logger.info('%s:%s will be declared' % (scope, name)) datasets.append({'scope': scope, 'name': name}) + summary[4] += 1 if not datasets: logger.error('Nothing to submit')