Skip to content

Commit

Permalink
Update whl file version
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Stempniewicz committed May 2, 2018
1 parent 0b5ddcc commit d6527df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,9 @@
],
"webapp": [
{
"filename": "webapp-0.2.2-py2.py3-none-any.whl",
"sha256Digest": "db8bdba11e6814ceeff37063d0e7548dab42f9e33a64b4c4a5b7ffea0bc93884",
"downloadUrl": "https://github.com/panchagnula/azure-cli-extensions/raw/sisirap-extensions-whl/dist/webapp-0.2.2-py2.py3-none-any.whl",
"filename": "webapp-0.2.3-py2.py3-none-any.whl",
"sha256Digest": "ba4f5d2004a5f06deeab89af435b0bf419f032ffa5b80833a32520ccc0fb6b4e",
"downloadUrl": "https://github.com/panchagnula/azure-cli-extensions/raw/sisirap-extensions-whl/dist/webapp-0.2.3-py2.py3-none-any.whl",
"metadata": {
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.0.24",
Expand Down Expand Up @@ -366,7 +366,7 @@
"metadata_version": "2.0",
"name": "webapp",
"summary": "An Azure CLI Extension to manage appservice resources",
"version": "0.2.2"
"version": "0.2.3"
}
}
],
Expand Down
9 changes: 3 additions & 6 deletions src/webapp/azext_webapp/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,13 @@ def create_tunnel(cmd, resource_group_name, name, port, slot=None):
import threading
from .tunnel import TunnelServer
tunnel_server = TunnelServer('', port, name, user_name, user_password)

config = get_site_configs(cmd, resource_group_name, name, slot)

t = threading.Thread()
t.daemon = True
t.start()
if not _check_for_ready_tunnel(cmd, resource_group_name, name, config.remote_debugging_enabled, tunnel_server, slot):
print('Tunnel is not ready yet, please wait (may take up to 1 minute)')

t = threading.Thread()
t.daemon = True
t.start()

while True:
time.sleep(1)
print('.')
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.2"
VERSION = "0.2.3"

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

0 comments on commit d6527df

Please sign in to comment.