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

NAS-132626 / 25.04 / call proactive_support_allowed() #14988

Merged
merged 1 commit into from
Nov 19, 2024
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
3 changes: 2 additions & 1 deletion src/middlewared/middlewared/plugins/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import async_timeout
import requests

from licenselib.utils import proactive_support_allowed
from middlewared.pipe import Pipes
from middlewared.plugins.system.utils import DEBUG_MAX_SIZE
from middlewared.schema import accepts, Bool, Dict, Int, List, Password, returns, Str
Expand Down Expand Up @@ -118,7 +119,7 @@ async def is_available(self):
if license_ is None:
return False

return license_['contract_type'] in ['SILVER', 'GOLD']
return proactive_support_allowed(license_['contract_type'])

@accepts(roles=['SUPPORT_READ'])
@returns(Bool('proactive_support_is_available_and_enabled'))
Expand Down
Loading