mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
CA-110610: It should be possible to apply a free license to a 6.1 or earlier pool if the pool has two or more servers in it.
- Changed the condition under which we show pool members as individual hosts in the License Manager dialog, from ALL to ANY, meaning that if any of the pool members can be activated, then we split the pool. Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
parent
6399087bd5
commit
bec2117a2a
@ -71,7 +71,7 @@ namespace XenAdmin.Dialogs
|
||||
|
||||
public static bool CanActivate(Pool pool)
|
||||
{
|
||||
return pool.Connection.Cache.Hosts.All(CanActivate);
|
||||
return pool.Connection.Cache.Hosts.Any(CanActivate);
|
||||
}
|
||||
|
||||
public ReadOnlyCollection<Host> HostsThatCanBeActivated
|
||||
|
Loading…
Reference in New Issue
Block a user