summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-09-01 15:11:30 +0000
committerChris Wilson <chris+github@qwirx.com>2007-09-01 15:11:30 +0000
commitf43a65d77ecccdc5e49d4dbfdbb498a7e0799afa (patch)
tree9235ca01e794d40dafd2d05c334ca5ecf52730bf /bin
parent0199687f46d3c51df525feb4fe82bcf42eb4f8d3 (diff)
Use ProgressNotifier to report upload exceptions (merges last part of [1342])
Diffstat (limited to 'bin')
-rw-r--r--bin/bbackupd/BackupClientDirectoryRecord.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/bbackupd/BackupClientDirectoryRecord.cpp b/bin/bbackupd/BackupClientDirectoryRecord.cpp
index df62c59c..f97ff315 100644
--- a/bin/bbackupd/BackupClientDirectoryRecord.cpp
+++ b/bin/bbackupd/BackupClientDirectoryRecord.cpp
@@ -887,7 +887,9 @@ bool BackupClientDirectoryRecord::UpdateItems(BackupClientDirectoryRecord::SyncP
{
// Connection errors should just be passed on to the main handler, retries
// would probably just cause more problems.
- // Already logged by UploadFile
+ rParams.GetProgressNotifier()
+ .NotifyFileUploadException(
+ this, filename, e);
throw;
}
catch(BoxException &e)