Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add more logs in unlink expired licenses command #738

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 @@ -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