Skip to content

Commit 2aa7e0d

Browse files
committed
typo
1 parent 390ca32 commit 2aa7e0d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/azure-cli/azure/cli/command_modules/appservice/custom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,8 +1183,8 @@ def validate_flex_migration_eligibility_for_linux_consumption_app(cmd, site, fle
11831183
# Check for SSL bindings - warn but allow migration
11841184
for ssl_state in site.host_name_ssl_states or []:
11851185
if ssl_state.ssl_state != 'Disabled':
1186-
warnings.append("The site '{}' is using TSL/SSL certificates. "
1187-
"Site-scoped TSL/SSL certificates are supported in Flex Consumption in preview. "
1186+
warnings.append("The site '{}' is using TLS/SSL certificates. "
1187+
"Site-scoped TLS/SSL certificates are supported in Flex Consumption in preview. "
11881188
"Re-configure certificates after migration using the new site-scoped model. "
11891189
"Help Link: https://aka.ms/flex-site-scoped-certs-docs."
11901190
.format(site.name))

src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ def test_functionapp_flex_migration_private_cert_list_candidates(self, resource_
883883
self.assertTrue(eligible_ssl_functionapp_name in candidate_names)
884884
ssl_candidate = next((c for c in candidates if c.get('name') == eligible_ssl_functionapp_name), None)
885885
self.assertIsNotNone(ssl_candidate)
886-
self.assertIn('TSL/SSL certificates', ssl_candidate.get('note', ''))
886+
self.assertIn('TLS/SSL certificates', ssl_candidate.get('note', ''))
887887

888888

889889
@ResourceGroupPreparer(location=FLEX_ASP_LOCATION_FUNCTIONAPP)

0 commit comments

Comments
 (0)