mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
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:
parent
89dc52bb3d
commit
407c59b8b9
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user