Skip to content

Commit

Permalink
Merge branch 'master' into bilalqamar95/dockerfile-setup-removal
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsobanjaved authored Nov 11, 2024
2 parents da840c1 + df16924 commit 5352096
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,14 @@ def unlink_expired_licenses(self, log_prefix, enterprise_customer_uuid, unlink):
user_emails = []

for license in licenses:
logger.info(
"%s Processing. Enterprise: [%s], User: [%s]. License: [%s]",
log_prefix,
enterprise_customer_uuid,
license.get('user_email'),
license.get('uuid')
)

# check if the user associated with the expired license
# has any other active licenses with the same customer
other_active_licenses = License.for_user_and_customer(
Expand All @@ -142,6 +150,12 @@ def unlink_expired_licenses(self, log_prefix, enterprise_customer_uuid, unlink):
current_plans_only=True,
).exists()
if other_active_licenses:
logger.info(
'%s Can not unlink. User has other active licenses. User: [%s]. License: [%s]',
log_prefix,
license.get('user_email'),
license.get('uuid')
)
continue

license_uuids.append(license.get('uuid'))
Expand Down

0 comments on commit 5352096

Please sign in to comment.