Merge pull request #229 from xenserver/xs64bit

Xs64bit
This commit is contained in:
Gabor Apati-Nagy 2014-09-29 11:09:06 +01:00
commit d64ff6ea3f
3 changed files with 7 additions and 2 deletions

View File

@ -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;

View File

@ -152,6 +152,9 @@ namespace XenAdmin.TabPages
{
set
{
if (value == null)
return;
SetupAnStartLicenseStatus(value);
if (xenObject != value)
{

View File

@ -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;