diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-26 16:18:38 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-26 16:18:38 -0400 |
commit | 3bd2cadd24615cc6b3208ec1ee71bbbc6ab9a55c (patch) | |
tree | b565780fca4909ffeeffee59bb701298f3a2a807 /doc/design | |
parent | 2b1e6446838ef820c32d8f70cdc85d1228fd9718 (diff) |
simplify PROGRESS
Only one transfer will be running at a time, per external special remote.
Diffstat (limited to 'doc/design')
-rw-r--r-- | doc/design/external_special_remote_protocol.mdwn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/design/external_special_remote_protocol.mdwn b/doc/design/external_special_remote_protocol.mdwn index cfd94f3aa..8c5c245b0 100644 --- a/doc/design/external_special_remote_protocol.mdwn +++ b/doc/design/external_special_remote_protocol.mdwn @@ -60,8 +60,8 @@ The special remote can continue sending messages to git-annex during this transfer. It will typically send progress messages, indicating how many bytes have been sent: - PROGRESS STORE somekey 10240 - PROGRESS STORE somekey 20480 + PROGRESS 10240 + PROGRESS 20480 Once the key has been stored, the special remote tells git-annex the result: @@ -157,7 +157,7 @@ in control. Supported protocol version. Current version is 0. Must be sent first thing at startup, as until it sees this git-annex does not know how to talk with the special remote program! -* `PROGRESS STORE|RETRIEVE Key Int` +* `PROGRESS Int` Indicates the current progress of the transfer (in bytes). May be repeated any number of times during the transfer process. This is highly recommended for STORE. (It is optional but good for RETRIEVE.) |