Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 5 additions & 5 deletions src/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -1509,8 +1509,8 @@
],
"internet-analyzer": [
{
"downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc1-py2.py3-none-any.whl",
"filename": "internet_analyzer-0.1.0rc1-py2.py3-none-any.whl",
"downloadUrl": "https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc2-py2.py3-none-any.whl",
"filename": "internet_analyzer-0.1.0rc2-py2.py3-none-any.whl",
"metadata": {
"azext.isPreview": true,
"azext.maxCliCoreVersion": "2.1.0",
Expand Down Expand Up @@ -1550,9 +1550,9 @@
"metadata_version": "2.0",
"name": "internet-analyzer",
"summary": "Microsoft Azure Command-Line Tools Internet Analyzer Extension",
"version": "0.1.0rc1"
"version": "0.1.0rc2"
},
"sha256Digest": "c30d3799c651a318d73c56a1a885f9442515f02da0806ba9ebebb6cf0fb8bf9f"
"sha256Digest": "c6a2e75f3387bbe308d51255ab2133eddd81198cdbf4fa2d60e9b4b0046a1da9"
}
],
"keyvault-preview": [
Expand Down Expand Up @@ -2361,4 +2361,4 @@
]
},
"formatVersion": "1"
}
}
4 changes: 4 additions & 0 deletions src/internet-analyzer/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.0rc2
++++++
* Removed fix for service problem

0.1.0rc1
++++++
* Initial release - release candidate 1
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ def prepare_request(next_link=None):
return request

def internal_paging(next_link=None):
# hack for paging problem -- to be removed
if next_link is not None:
raise StopIteration("End of paging")

request = prepare_request(next_link)

response = self._client.send(request, stream=False, **operation_config)
Expand Down
2 changes: 1 addition & 1 deletion src/internet-analyzer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '0.1.0rc1'
VERSION = '0.1.0rc2'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down