Skip to content

Commit 31ce6a0

Browse files
author
Hugues Valois
committed
Merge pull request Azure#359 from huguesv/rel11
flush as we write + update changelog
2 parents 4e6aefb + 8bbfd2d commit 31ce6a0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

ChangeLog.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DATE TBD: Version 0.11.0
1+
2015-05-13 Version 0.11.0
22

33
IMPORTANT CHANGE THAT AFFECTS STORAGE:
44

@@ -27,6 +27,9 @@ Other changes:
2727
* Delete cloud service now supports deleting blobs from storage
2828
* Support for specifying SourceMediaLink for DataVirtualHardDisks
2929

30+
* Fixes for bugs:
31+
#350 wait_for_operation needs to flush as it prints
32+
3033
Thank you to lmazuel, antonydenyer, zlike-msft, melor and amegianeg for their
3134
contributions.
3235

azure/servicemanagement/servicemanagementclient.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,15 @@ def perform_delete(self, path, x_ms_version=None):
210210
#--Operations for tracking asynchronous requests ---------------------
211211
def wait_for_operation_status_progress_default_callback(elapsed):
212212
sys.stdout.write('.')
213+
sys.stdout.flush()
213214

214215
def wait_for_operation_status_success_default_callback(elapsed):
215216
sys.stdout.write('\n')
217+
sys.stdout.flush()
216218

217219
def wait_for_operation_status_failure_default_callback(elapsed, ex):
218220
sys.stdout.write('\n')
221+
sys.stdout.flush()
219222
print(vars(ex.result))
220223
raise ex
221224

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '0.10.2'
56+
version = '0.11.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '0.10.2'
58+
release = '0.11.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

0 commit comments

Comments
 (0)