From bd863016faca89fe78844467aefdd319db044b69 Mon Sep 17 00:00:00 2001 From: Kenneth Skovhede Date: Mon, 26 Feb 2018 11:37:10 +0100 Subject: Added support for returning multiple DNS names for cache invalidation. Updated most backends to return the actual DNS names for cache invalidation. --- Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs') diff --git a/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs b/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs index 45a8ce8f4..7c9ccf9cf 100644 --- a/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs +++ b/Duplicati/Library/Backend/SSHv2/SSHv2Backend.cs @@ -369,9 +369,9 @@ namespace Duplicati.Library.Backend } } - public string DNSName + public string[] DNSName { - get { return null; } + get { return new string[] { m_server }; } } } } -- cgit v1.2.3