Skip to content

Commit e58d14e

Browse files
authored
[dev-spaces] Add deprecation info to dev-spaces extension (Azure#2617)
* add deprecation info to dev-spaces * add deprecation notice to setup text * follow documentation * line too long * revert version change
1 parent 99130c4 commit e58d14e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dev-spaces/azext_dev_spaces/custom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def ads_use_dev_spaces(cluster_name, resource_group_name, update=False, space_na
3838
:param do_not_prompt: Do not prompt for confirmation. Requires --space.
3939
:type do_not_prompt: bool
4040
"""
41-
41+
logger.warning("For more information, please see https://github.com/Azure/dev-spaces/issues/410")
4242
azds_cli = _install_dev_spaces_cli(update, do_not_prompt)
4343

4444
use_command_arguments = [azds_cli, 'use', '--name', cluster_name,
@@ -66,7 +66,7 @@ def ads_remove_dev_spaces(cluster_name, resource_group_name, do_not_prompt=False
6666
:param do_not_prompt: Do not prompt for confirmation.
6767
:type do_not_prompt: bool
6868
"""
69-
69+
logger.warning("For more information, please see https://github.com/Azure/dev-spaces/issues/410")
7070
azds_cli = _install_dev_spaces_cli(False, do_not_prompt)
7171

7272
remove_command_arguments = [azds_cli, 'remove', '--name', cluster_name,

0 commit comments

Comments
 (0)