Skip to content

Commit

Permalink
update remote connection (#659)
Browse files Browse the repository at this point in the history
* remote connection add deprecation warning

* update whl
  • Loading branch information
patricklee2 authored and panchagnula committed May 6, 2019
1 parent e01587d commit 267d086
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -2104,8 +2104,8 @@
],
"webapp": [
{
"downloadUrl": "https://github.com/panchagnula/azure-cli-extensions/raw/sisirap-extensions-whl/dist/webapp-0.2.16-py2.py3-none-any.whl",
"filename": "webapp-0.2.16-py2.py3-none-any.whl",
"downloadUrl": "https://github.com/patricklee2/extensions-whl/raw/master/webapp-0.2.17-py2.py3-none-any.whl",
"filename": "webapp-0.2.17-py2.py3-none-any.whl",
"metadata": {
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.0.46",
Expand Down Expand Up @@ -2144,9 +2144,9 @@
"metadata_version": "2.0",
"name": "webapp",
"summary": "Additional commands for Azure AppService.",
"version": "0.2.16"
"version": "0.2.17"
},
"sha256Digest": "64f64fbc0689a5283f3f124dc48264d386371fb7a003eacfdc09450c66f5e25d"
"sha256Digest": "33e87daa9ef75664e9c49f619985a0869ba6606c2a76cd5c6329f309f0e828b1"
}
]
},
Expand Down
2 changes: 2 additions & 0 deletions src/webapp/azext_webapp/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,8 @@ def _check_for_ready_tunnel(remote_debugging, tunnel_server):


def create_tunnel(cmd, resource_group_name, name, port=None, slot=None):
logger.warning("remote-connection is deprecated and moving to cli-core, use `webapp create-remote-connection`")

webapp = show_webapp(cmd, resource_group_name, name, slot)
is_linux = webapp.reserved
if not is_linux:
Expand Down
2 changes: 1 addition & 1 deletion src/webapp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "0.2.16"
VERSION = "0.2.17"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 267d086

Please sign in to comment.