summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2022-07-25 13:05:16 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2022-07-25 13:06:06 +0200
commit404fe33a8d9120c097fcaa1d8ceb6336f00f301f (patch)
treebba8adb144eb78fdc38516c460cfc50fff8a7fa3 /docs
parenta4a2530a29d75d592edca7ce09e8e4bdaaf544d7 (diff)
docs: update archive_progress json description about "finished", see #6570
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/frontends.rst23
1 files changed, 13 insertions, 10 deletions
diff --git a/docs/internals/frontends.rst b/docs/internals/frontends.rst
index 2fc1ab0a..95f3538d 100644
--- a/docs/internals/frontends.rst
+++ b/docs/internals/frontends.rst
@@ -50,17 +50,20 @@ archive_progress
The following keys exist, each represents the current progress.
original_size
- Original size of data processed so far (before compression and deduplication)
+ Original size of data processed so far (before compression and deduplication, may be empty/absent)
compressed_size
- Compressed size
+ Compressed size (may be empty/absent)
deduplicated_size
- Deduplicated size
+ Deduplicated size (may be empty/absent)
nfiles
- Number of (regular) files processed so far
+ Number of (regular) files processed so far (may be empty/absent)
path
- Current path
+ Current path (may be empty/absent)
time
Unix timestamp (float)
+ finished
+ boolean indicating whether the operation has finished, only the last object for an *operation*
+ can have this property set to *true*.
progress_message
A message-based progress information with no concrete progress information, just a message
@@ -497,26 +500,26 @@ added:
removed:
See **added** property.
-
+
old_mode:
If **type** == '*mode*', then **old_mode** and **new_mode** provide the mode and permissions changes.
new_mode:
See **old_mode** property.
-
+
old_user:
If **type** == '*owner*', then **old_user**, **new_user**, **old_group** and **new_group** provide the user
and group ownership changes.
old_group:
See **old_user** property.
-
+
new_user:
See **old_user** property.
-
+
new_group:
See **old_user** property.
-
+
Example (excerpt) of ``borg diff --json-lines``::