CA-273163: Fix the error where XenCenter did not set XenServer log destination and the iSCSI IQN settings

Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
Mihaela Stoica 2017-11-22 13:08:20 +08:00 committed by Konstantina Chremmou
parent 89dc52bb3d
commit 407c59b8b9

View File

@ -150,7 +150,7 @@ namespace XenAPI
public void SetIscsiIqn(string value)
{
SetDictionaryKey(other_config, "iscsi_iqn", value);
other_config = SetDictionaryKey(other_config, "iscsi_iqn", value);
}
public override string ToString()
@ -619,7 +619,7 @@ namespace XenAPI
/// </summary>
public void SetSysLogDestination(string value)
{
SetDictionaryKey(logging, "syslog_destination", value);
logging = SetDictionaryKey(logging, "syslog_destination", value);
}
public static bool IsFullyPatched(Host host,IEnumerable<IXenConnection> connections)