Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-peters committed Aug 22, 2024
1 parent 4fd14dc commit f204250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coldfront/plugins/sftocf/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ def allocationquerymatches(self):
total_sort_key = itemgetter('path','volume')
allocation_usage_grouped = return_dict_of_groupings(self.sf_usage_data, total_sort_key)
missing_allocations = [
(k,a) for k, a in allocation_usage_grouped if k not in allocation_list
(k,a) for k, a in allocation_usage_grouped if (a, k) not in allocation_list
]
print("missing_allocations:", missing_allocations)
logger.warning('starfish allocations missing in coldfront: %s', missing_allocations)
Expand Down

0 comments on commit f204250

Please sign in to comment.