Skip to content

Commit cbf6cdb

Browse files
committed
this will close #84 and will close singularityhub/sregistry#56
1 parent c6aa834 commit cbf6cdb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ and changes prior to that are (unfortunately) done retrospectively. Critical ite
1515

1616
## [vxx](https://github.com/singularityware/singularity-python/tree/development) (development)
1717

18+
**changed user experience**
19+
- to address this [sregisty issue](https://github.com/singularityhub/sregistry/issues/56) the push client does not always state that the upload is finished. In the case that an image is frozen (and 403 status) this message is misleading.
1820

1921
## [v2.4.1](https://github.com/singularityware/singularity-python/releases/tag/v2.4.1) (v2.4.1)
2022

singularity/registry/client/push.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def push(self, path, name, tag=None, compress=False):
129129
r = requests.post(url, data=monitor, headers=headers)
130130
message = self.read_response(r)
131131

132-
print('\nUpload finished! [Return status {0} {1}]'.format(r.status_code, message))
132+
print('\n[Return status {0} {1}]'.format(r.status_code, message))
133133

134134
except KeyboardInterrupt:
135135
print('\nUpload cancelled.')

0 commit comments

Comments
 (0)