mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
commit
d64ff6ea3f
@ -57,7 +57,9 @@ namespace XenAdmin.Commands
|
||||
|
||||
_host = host;
|
||||
_menuText = _host.Name.EscapeAmpersands();
|
||||
_secondImage = Resources._000_host_0_star;
|
||||
|
||||
//Default or failure case, there is no score/star rating actually, just don't display star
|
||||
_secondImage = null;
|
||||
_menuImage = Resources._000_ServerDisconnected_h32bit_16;
|
||||
_recommendation = recommendation;
|
||||
|
||||
|
@ -152,6 +152,9 @@ namespace XenAdmin.TabPages
|
||||
{
|
||||
set
|
||||
{
|
||||
if (value == null)
|
||||
return;
|
||||
|
||||
SetupAnStartLicenseStatus(value);
|
||||
if (xenObject != value)
|
||||
{
|
||||
|
@ -57,7 +57,7 @@ namespace XenAPI
|
||||
// or different XenServer versions.
|
||||
private const int DEFAULT_NUM_VCPUS_ALLOWED = 16;
|
||||
private const int DEFAULT_NUM_VIFS_ALLOWED = 7;
|
||||
private const int DEFAULT_NUM_VBDS_ALLOWED = 7;
|
||||
private const int DEFAULT_NUM_VBDS_ALLOWED = 16;
|
||||
public const long DEFAULT_MEM_ALLOWED = 128 * Util.BINARY_GIGA;
|
||||
public const int DEFAULT_CORES_PER_SOCKET = 1;
|
||||
private SnapshotsView _snapshotView = SnapshotsView.None;
|
||||
|
Loading…
Reference in New Issue
Block a user