Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Stahr <dan.stahr@gmail.com>2017-08-04 13:24:18 +0300
committerDan Stahr <dan.stahr@gmail.com>2017-08-04 13:24:18 +0300
commit8c2280c86c451534ba55c6d860ea7ea50c8a6515 (patch)
treef8b6b5ada71bb05fc817de1302d47a175ceaf167 /Duplicati/Library/Interface
parent3232f58dde572ccbf8cf01b5801b84e767acd956 (diff)
Issue #2578: Removed all direct calls to VACUUM and added a command to run VACUUM manually
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index abdb11cbb..3e582c304 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -325,5 +325,8 @@ namespace Duplicati.Library.Interface
IEnumerable<string> Lines { get; }
}
+ public interface IVacuumResults : IBasicResults
+ {
+ }
}