Skip to content
Merged
Changes from 3 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 @@ -621,7 +621,8 @@ def cli_remove_appgroup_policy(client, resource_group_name, namespace_name, appl
from azure.cli.core import CLIError

appGroup = client.get(resource_group_name, namespace_name, application_group_name)

logger.warning(
'the policy remove policy cmdlets will do removals based on policy name')
Comment thread
schaudhari6254888 marked this conversation as resolved.
Outdated
if appGroup.policies:
for policy_object in throttling_policy_config:
if policy_object in appGroup.policies:
Expand Down