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:
Diffstat (limited to 'Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs')
-rw-r--r--Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs b/Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs
index 83c6758be..4d5d90266 100644
--- a/Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs
+++ b/Duplicati/Library/Backend/OpenStack/OpenStackStorage.cs
@@ -423,9 +423,15 @@ namespace Duplicati.Library.Backend.OpenStack
}
}
- public string DNSName
+ public virtual string[] DNSName
{
- get { return null; }
+ get
+ {
+ return new string[] {
+ new System.Uri(m_authUri).Host,
+ string.IsNullOrWhiteSpace(m_simplestorageendpoint) ? null : new System.Uri(m_simplestorageendpoint).Host
+ };
+ }
}
#endregion