Skip to content

Commit

Permalink
fix missing API Level
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoon committed Nov 20, 2020
1 parent ab2d27c commit ddc5410
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions XenAdmin/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,7 @@ void connection_CachePopulated(IXenConnection connection)
// not required to upgrade, we at least warn them. // else if (server_max > current_version)

//int server_min = master.XenCenterMin();
int server_min_res = master.XenCenterMin();
int server_min = 20; // XenServer 7.4 (jura)
int server_max = master.XenCenterMax();

Expand Down
3 changes: 2 additions & 1 deletion XenModel/XenAPI/ApiVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public enum API_Version
API_2_13 = 24, //Unreleased (oslo)
API_2_14 = 25, //Citrix Hypervisor 8.1 (quebec)
API_2_15 = 26, //Citrix Hypervisor 8.2 (stockholm)
LATEST = 26,
API_2_16 = 27, //Unreleased (next)
LATEST = 27,
UNKNOWN = 99
}

Expand Down

0 comments on commit ddc5410

Please sign in to comment.