mirror of
https://github.com/golang/go
synced 2024-11-22 18:34:51 -07:00
codereview: warn about 'hg upload' not uploading
This seems to be what causes the 'chunk mismatch' errors. I don't know why the server tells us there's nothing to upload, but at the least we can warn that it did, so that the user will try again. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/62840043
This commit is contained in:
parent
37bf90024b
commit
673917f878
@ -367,6 +367,8 @@ class CL(object):
|
|||||||
msg = lines[0]
|
msg = lines[0]
|
||||||
patchset = lines[1].strip()
|
patchset = lines[1].strip()
|
||||||
patches = [x.split(" ", 1) for x in lines[2:]]
|
patches = [x.split(" ", 1) for x in lines[2:]]
|
||||||
|
else:
|
||||||
|
print >>sys.stderr, "Server says there is nothing to upload (probably wrong):\n" + msg
|
||||||
if response_body.startswith("Issue updated.") and quiet:
|
if response_body.startswith("Issue updated.") and quiet:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user