Vinzenz Feenstra has uploaded a new change for review.
Change subject: Remove unused columns guest_last_log{in,out}_time from database
......................................................................
Remove unused columns guest_last_log{in,out}_time from database
Change-Id: I70ade14df12537c6593dd3fc992ad62c3b4cd762
Bug-Url: https://bugzilla.redhat.com/737335
Signed-off-by: Vinzenz Feenstra <[email protected]>
---
M
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VM.java
M
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDynamic.java
M
backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java
M backend/manager/modules/dal/src/test/resources/fixtures.xml
M
backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/DestroyVmVDSCommand.java
M
backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsBrokerObjectsBuilder.java
M
backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsProperties.java
M
frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Cloner.java
M packaging/dbscripts/create_tables.sql
M packaging/dbscripts/create_views.sql
A
packaging/dbscripts/upgrade/03_06_0580_drop_vm_dynamic_guest_last_logxxx_time_columns.sql
M packaging/dbscripts/vms_sp.sql
12 files changed, 9 insertions(+), 91 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/05/35505/1
diff --git
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VM.java
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VM.java
index da3995b..ee45c03 100644
---
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VM.java
+++
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VM.java
@@ -546,28 +546,12 @@
this.vmDynamic.setGuestCurrentUserName(value);
}
- public Date getGuestLastLoginTime() {
- return this.vmDynamic.getGuestLastLoginTime();
- }
-
- public void setGuestLastLoginTime(Date value) {
- this.vmDynamic.setGuestLastLoginTime(value);
- }
-
public Guid getConsoleUserId() {
return this.vmDynamic.getConsoleUserId();
}
public void setConsoleUserId(Guid value) {
this.vmDynamic.setConsoleUserId(value);
- }
-
- public Date getGuestLastLogoutTime() {
- return this.vmDynamic.getGuestLastLogoutTime();
- }
-
- public void setGuestLastLogoutTime(Date value) {
- this.vmDynamic.setGuestLastLogoutTime(value);
}
public String getGuestOs() {
@@ -1134,17 +1118,6 @@
// ignores the final fields
private String cdPath;
private String floppyPath;
-
- /**
- * Guest last logout time treatment. If vm stoped without logging out -
set last logout time now
- */
- public void guestLogoutTimeTreatmentAfterDestroy() {
- if (getGuestLastLoginTime() != null
- && (getGuestLastLogoutTime() == null ||
getGuestLastLoginTime().compareTo(
- getGuestLastLogoutTime()) > 0)) {
- setGuestLastLogoutTime(new Date());
- }
- }
public InitializationType getInitializationType() {
return initializationType;
diff --git
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDynamic.java
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDynamic.java
index 917727b..e64e322 100644
---
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDynamic.java
+++
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDynamic.java
@@ -26,8 +26,6 @@
private String consoleCurrentUserName;
@UnchangeableByVdsm
private Guid consoleUserId;
- private Date guestLastLoginTime;
- private Date guestLastLogoutTime;
private String guestOs;
@UnchangeableByVdsm
private Guid migratingToVds;
@@ -94,8 +92,6 @@
result = prime * result + ((consoleCurrentUserName == null) ? 0 :
consoleCurrentUserName.hashCode());
result = prime * result + ((guestCurUserName == null) ? 0 :
guestCurUserName.hashCode());
result = prime * result + ((consoleUserId == null) ? 0 :
consoleUserId.hashCode());
- result = prime * result + ((guestLastLoginTime == null) ? 0 :
guestLastLoginTime.hashCode());
- result = prime * result + ((guestLastLogoutTime == null) ? 0 :
guestLastLogoutTime.hashCode());
result = prime * result + ((guestOs == null) ? 0 : guestOs.hashCode());
result = prime * result + ((guestRequestedMemory == null) ? 0 :
guestRequestedMemory.hashCode());
result = prime * result + ((hibernationVolHandle == null) ? 0 :
hibernationVolHandle.hashCode());
@@ -153,8 +149,6 @@
&& ObjectUtils.objectsEqual(consoleCurrentUserName,
other.consoleCurrentUserName)
&& ObjectUtils.objectsEqual(guestCurUserName,
other.guestCurUserName)
&& ObjectUtils.objectsEqual(consoleUserId, other.consoleUserId)
- && ObjectUtils.objectsEqual(guestLastLoginTime,
other.guestLastLoginTime)
- && ObjectUtils.objectsEqual(guestLastLogoutTime,
other.guestLastLogoutTime)
&& ObjectUtils.objectsEqual(guestOs, other.guestOs)
&& ObjectUtils.objectsEqual(guestRequestedMemory,
other.guestRequestedMemory)
&& ObjectUtils.objectsEqual(hibernationVolHandle,
other.hibernationVolHandle)
@@ -286,22 +280,6 @@
public void setGuestOs(String value) {
this.guestOs = value;
- }
-
- public Date getGuestLastLoginTime() {
- return this.guestLastLoginTime;
- }
-
- public void setGuestLastLoginTime(Date value) {
- this.guestLastLoginTime = value;
- }
-
- public Date getGuestLastLogoutTime() {
- return this.guestLastLogoutTime;
- }
-
- public void setGuestLastLogoutTime(Date value) {
- this.guestLastLogoutTime = value;
}
public Guid getMigratingToVds() {
diff --git
a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java
b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java
index d241eb4..3793597 100644
---
a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java
+++
b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java
@@ -85,10 +85,6 @@
.addValue("guest_cur_user_name", vm.getGuestCurrentUserName())
.addValue("console_cur_user_name",
vm.getConsoleCurrentUserName())
.addValue("console_user_id", vm.getConsoleUserId())
- .addValue("guest_last_login_time",
- vm.getGuestLastLoginTime())
- .addValue("guest_last_logout_time",
- vm.getGuestLastLogoutTime())
.addValue("guest_os", vm.getGuestOs())
.addValue("migrating_to_vds", vm.getMigratingToVds())
.addValue("run_on_vds", vm.getRunOnVds())
@@ -144,8 +140,6 @@
entity.setGuestCurrentUserName(rs.getString("guest_cur_user_name"));
entity.setConsoleCurrentUserName(rs.getString("console_cur_user_name"));
entity.setConsoleUserId(getGuid(rs, "console_user_id"));
-
entity.setGuestLastLoginTime(DbFacadeUtils.fromDate(rs.getTimestamp("guest_last_login_time")));
-
entity.setGuestLastLogoutTime(DbFacadeUtils.fromDate(rs.getTimestamp("guest_last_logout_time")));
entity.setGuestOs(rs.getString("guest_os"));
entity.setMigratingToVds(getGuid(rs, "migrating_to_vds"));
entity.setRunOnVds(getGuid(rs, "run_on_vds"));
diff --git a/backend/manager/modules/dal/src/test/resources/fixtures.xml
b/backend/manager/modules/dal/src/test/resources/fixtures.xml
index 1a94eb7..1f6a1fb 100644
--- a/backend/manager/modules/dal/src/test/resources/fixtures.xml
+++ b/backend/manager/modules/dal/src/test/resources/fixtures.xml
@@ -3733,8 +3733,6 @@
<column>last_start_time</column>
<column>last_stop_time</column>
<column>guest_cur_user_name</column>
- <column>guest_last_login_time</column>
- <column>guest_last_logout_time</column>
<column>console_user_id</column>
<column>console_cur_user_name</column>
<column>guest_os</column>
@@ -3766,8 +3764,6 @@
<row>
<value>77296e00-0cad-4e5a-9299-008a7b6f4356</value>
<value>5</value>
- <null />
- <null />
<null />
<null />
<null />
@@ -3814,8 +3810,6 @@
<null />
<null />
<null />
- <null />
- <null />
<value>9bf7c640-b620-456f-a550-0348f366544a</value> <!--
console_user_id -->
<null />
<null />
@@ -3848,8 +3842,6 @@
<row>
<value>77296e00-0cad-4e5a-9299-008a7b6f4354</value>
<value>1</value>
- <null />
- <null />
<null />
<null />
<null />
@@ -3897,8 +3889,6 @@
<null />
<null />
<null />
- <null />
- <null />
<null /> <!-- console_user_id -->
<null />
<value>afce7a39-8e8c-4819-ba9c-796d316592e7</value>
@@ -3930,8 +3920,6 @@
<row>
<value>77296e00-0cad-4e5a-9299-008a7b6f4360</value>
<value>0</value>
- <null />
- <null />
<null />
<null />
<null />
@@ -3979,8 +3967,6 @@
<null />
<null />
<null />
- <null />
- <null />
<null /> <!-- console_user_id -->
<null />
<null />
@@ -4012,8 +3998,6 @@
<row>
<value>77296e00-0cad-4e5a-9299-008a7b6f5003</value>
<value>0</value>
- <null />
- <null />
<null />
<null />
<null />
diff --git
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/DestroyVmVDSCommand.java
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/DestroyVmVDSCommand.java
index b95a2ff..08818b2 100644
---
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/DestroyVmVDSCommand.java
+++
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/DestroyVmVDSCommand.java
@@ -49,7 +49,6 @@
@Override
public Void runInTransaction() {
- curVm.guestLogoutTimeTreatmentAfterDestroy();
curVm.setStopReason(getParameters().getReason());
// SaveVmDynamicToDBThreaded(curVm);
DbFacade.getInstance().getVmDynamicDao().update(curVm.getDynamicData());
diff --git
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsBrokerObjectsBuilder.java
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsBrokerObjectsBuilder.java
index 61420d2..a651364 100644
---
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsBrokerObjectsBuilder.java
+++
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsBrokerObjectsBuilder.java
@@ -246,7 +246,6 @@
}
// ------------- vm internal agent data
- vm.setGuestLastLoginTime(AssignDateTImeFromEpoch(xmlRpcStruct,
VdsProperties.guest_last_login_time));
vm.setVmHost(AssignStringValue(xmlRpcStruct, VdsProperties.vm_host));
String guestUserName = AssignStringValue(xmlRpcStruct,
VdsProperties.guest_cur_user_name);
diff --git
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsProperties.java
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsProperties.java
index 3047465..be4b913 100644
---
a/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsProperties.java
+++
b/backend/manager/modules/vdsbroker/src/main/java/org/ovirt/engine/core/vdsbroker/vdsbroker/VdsProperties.java
@@ -242,8 +242,6 @@
public static final String displayIp = "displayIp";
public static final String vm_pid = "pid";
public static final String vm_type = "vmType";
- public static final String guest_last_login_time = "lastLogin";
- public static final String guest_last_logout_time = "lastLogout";
public static final String launch_paused_param = "launchPaused";
public static final String session = "session";
public static final String spiceSslCipherSuite = "spiceSslCipherSuite";
diff --git
a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Cloner.java
b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Cloner.java
index 8740a9e..6f6dad3 100644
---
a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Cloner.java
+++
b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/Cloner.java
@@ -142,8 +142,6 @@
vm.setConsoleCurrentUserName(instance.getConsoleCurentUserName());
vm.setGuestCurrentUserName(instance.getGuestCurentUserName());
vm.setConsoleUserId(instance.getConsoleUserId());
- vm.setGuestLastLoginTime(instance.getGuestLastLoginTime());
- vm.setGuestLastLogoutTime(instance.getGuestLastLogoutTime());
vm.setGuestOs(instance.getGuestOs());
vm.setGuestRequestedMemory(instance.getGuestRequestedMemory());
// TODO: Object, should be "cloned" (probably easiest via new
Version(instance.GuestAgentVersion.ToString())
diff --git a/packaging/dbscripts/create_tables.sql
b/packaging/dbscripts/create_tables.sql
index 04ce154..d10185f 100644
--- a/packaging/dbscripts/create_tables.sql
+++ b/packaging/dbscripts/create_tables.sql
@@ -1061,8 +1061,6 @@
vm_pid integer,
last_start_time timestamp with time zone,
guest_cur_user_name character varying(255),
- guest_last_login_time timestamp with time zone,
- guest_last_logout_time timestamp with time zone,
guest_os character varying(255),
run_on_vds uuid,
migrating_to_vds uuid,
diff --git a/packaging/dbscripts/create_views.sql
b/packaging/dbscripts/create_views.sql
index 24c9a11..5c8596f 100644
--- a/packaging/dbscripts/create_views.sql
+++ b/packaging/dbscripts/create_views.sql
@@ -665,7 +665,7 @@
vm_templates.cpu_per_socket as vmt_cpu_per_socket,
vm_templates.num_of_sockets*vm_templates.cpu_per_socket as vmt_num_of_cpus,
vm_templates.description as vmt_description,
vm_dynamic.status as status, vm_dynamic.vm_ip as vm_ip, vm_dynamic.vm_host as
vm_host,
vm_dynamic.vm_pid as vm_pid, vm_dynamic.last_start_time
as last_start_time, vm_dynamic.guest_cur_user_name as guest_cur_user_name,
vm_dynamic.console_cur_user_name as console_cur_user_name,
- vm_dynamic.guest_last_login_time as
guest_last_login_time, vm_dynamic.guest_last_logout_time as
guest_last_logout_time, vm_dynamic.guest_os as guest_os,
+ vm_dynamic.guest_os as guest_os,
vm_dynamic.console_user_id as console_user_id,
vm_dynamic.guest_agent_nics_hash as guest_agent_nics_hash,
vm_dynamic.run_on_vds as run_on_vds,
vm_dynamic.migrating_to_vds as migrating_to_vds, vm_dynamic.app_list as
app_list, vm_dynamic.display as display, vm_dynamic.hibernation_vol_handle as
hibernation_vol_handle,
vm_pool_map_view.vm_pool_name as vm_pool_name,
vm_pool_map_view.vm_pool_id as vm_pool_id, vm_static.vm_guid as vm_guid,
vm_static.num_of_monitors as num_of_monitors, vm_static.single_qxl_pci as
single_qxl_pci, vm_static.allow_console_reconnect as allow_console_reconnect,
vm_static.is_initialized as is_initialized,
@@ -718,8 +718,8 @@
vms.vds_group_description, vms.vmt_name, vms.vmt_mem_size_mb,
vms.vmt_os, vms.vmt_creation_date,
vms.vmt_child_count, vms.vmt_num_of_sockets,
vms.vmt_cpu_per_socket, vms.vmt_description, vms.status, vms.vm_ip,
vms.vm_host, vms.vmt_num_of_sockets * vms.vmt_cpu_per_socket AS
vmt_num_of_cpus, vms.vm_pid,
- vms.last_start_time, vms.last_stop_time, vms.guest_cur_user_name,
vms.console_cur_user_name, vms.guest_last_login_time, vms.console_user_id,
- vms.guest_last_logout_time, vms.guest_os, vms.run_on_vds,
vms.migrating_to_vds, vms.app_list, vms.display,
+ vms.last_start_time, vms.last_stop_time, vms.guest_cur_user_name,
vms.console_cur_user_name, vms.console_user_id,
+ vms.guest_os, vms.run_on_vds, vms.migrating_to_vds, vms.app_list,
vms.display,
vms.hibernation_vol_handle, vms.vm_pool_name, vms.vm_pool_id,
vms.vm_guid, vms.num_of_monitors, vms.single_qxl_pci,
vms.allow_console_reconnect,
vms.is_initialized, vms.num_of_sockets, vms.cpu_per_socket,
vms.usb_policy, vms.acpi_enable,
@@ -742,7 +742,7 @@
(snapshots.snapshot_id is not null) as next_run_config_exists,
vms.numatune_mode,
vms.is_spice_file_transfer_enabled,
vms.is_spice_copy_paste_enabled,
- vms.cpu_profile_id,
+ vms.cpu_profile_id,/
vms.is_auto_converge, vms.is_migrate_compressed
FROM vms LEFT OUTER JOIN
tags_vm_map_view ON vms.vm_guid = tags_vm_map_view.vm_id LEFT
OUTER JOIN
diff --git
a/packaging/dbscripts/upgrade/03_06_0580_drop_vm_dynamic_guest_last_logxxx_time_columns.sql
b/packaging/dbscripts/upgrade/03_06_0580_drop_vm_dynamic_guest_last_logxxx_time_columns.sql
new file mode 100644
index 0000000..8cb3747
--- /dev/null
+++
b/packaging/dbscripts/upgrade/03_06_0580_drop_vm_dynamic_guest_last_logxxx_time_columns.sql
@@ -0,0 +1,3 @@
+ALTER TABLE vm_dynamic DROP COLUMN guest_last_login_time CASCADE;
+ALTER TABLE vm_dynamic DROP COLUMN guest_last_logout_time CASCADE;
+
diff --git a/packaging/dbscripts/vms_sp.sql b/packaging/dbscripts/vms_sp.sql
index b79b7d2..28dce61 100644
--- a/packaging/dbscripts/vms_sp.sql
+++ b/packaging/dbscripts/vms_sp.sql
@@ -236,8 +236,6 @@
Create or replace FUNCTION InsertVmDynamic(v_app_list text ,
v_guest_cur_user_name VARCHAR(255) ,
v_console_cur_user_name VARCHAR(255) ,
- v_guest_last_login_time TIMESTAMP WITH TIME ZONE ,
- v_guest_last_logout_time TIMESTAMP WITH TIME ZONE ,
v_console_user_id UUID,
v_guest_os VARCHAR(255) ,
v_migrating_to_vds UUID ,
@@ -278,8 +276,8 @@
RETURNS VOID
AS $procedure$
BEGIN
-INSERT INTO vm_dynamic(app_list, guest_cur_user_name, console_cur_user_name,
guest_last_login_time, guest_last_logout_time, console_user_id, guest_os,
migrating_to_vds, RUN_ON_VDS, status, vm_guid, vm_host, vm_ip, last_start_time,
last_stop_time, vm_pid, display, acpi_enable, session, display_ip,
display_type, kvm_enable, boot_sequence, display_secure_port, utc_diff,
last_vds_run_on, client_ip, guest_requested_memory,
hibernation_vol_handle,exit_status,pause_status,exit_message,
guest_agent_nics_hash, last_watchdog_event, last_watchdog_action, is_run_once,
vm_fqdn, cpu_name, emulated_machine, current_cd, exit_reason, guest_cpu_count)
- VALUES(v_app_list, v_guest_cur_user_name, v_console_cur_user_name,
v_guest_last_login_time, v_guest_last_logout_time, v_console_user_id,
v_guest_os, v_migrating_to_vds, v_run_on_vds, v_status, v_vm_guid, v_vm_host,
v_vm_ip, v_last_start_time, v_last_stop_time, v_vm_pid, v_display,
v_acpi_enable, v_session, v_display_ip, v_display_type, v_kvm_enable,
v_boot_sequence, v_display_secure_port, v_utc_diff, v_last_vds_run_on,
v_client_ip, v_guest_requested_memory, v_hibernation_vol_handle, v_exit_status,
v_pause_status, v_exit_message, v_guest_agent_nics_hash, v_last_watchdog_event,
v_last_watchdog_action, v_is_run_once, v_vm_fqdn, v_cpu_name,
v_emulated_machine, v_current_cd, v_exit_reason,
+INSERT INTO vm_dynamic(app_list, guest_cur_user_name, console_cur_user_name,
console_user_id, guest_os, migrating_to_vds, RUN_ON_VDS, status, vm_guid,
vm_host, vm_ip, last_start_time, last_stop_time, vm_pid, display, acpi_enable,
session, display_ip, display_type, kvm_enable, boot_sequence,
display_secure_port, utc_diff, last_vds_run_on, client_ip,
guest_requested_memory,
hibernation_vol_handle,exit_status,pause_status,exit_message,
guest_agent_nics_hash, last_watchdog_event, last_watchdog_action, is_run_once,
vm_fqdn, cpu_name, emulated_machine, current_cd, exit_reason, guest_cpu_count)
+ VALUES(v_app_list, v_guest_cur_user_name, v_console_cur_user_name,
v_console_user_id, v_guest_os, v_migrating_to_vds, v_run_on_vds, v_status,
v_vm_guid, v_vm_host, v_vm_ip, v_last_start_time, v_last_stop_time, v_vm_pid,
v_display, v_acpi_enable, v_session, v_display_ip, v_display_type,
v_kvm_enable, v_boot_sequence, v_display_secure_port, v_utc_diff,
v_last_vds_run_on, v_client_ip, v_guest_requested_memory,
v_hibernation_vol_handle, v_exit_status, v_pause_status, v_exit_message,
v_guest_agent_nics_hash, v_last_watchdog_event, v_last_watchdog_action,
v_is_run_once, v_vm_fqdn, v_cpu_name, v_emulated_machine, v_current_cd,
v_exit_reason,
v_guest_cpu_count);
END; $procedure$
LANGUAGE plpgsql;
@@ -289,8 +287,6 @@
Create or replace FUNCTION UpdateVmDynamic(v_app_list text ,
v_guest_cur_user_name VARCHAR(255) ,
v_console_cur_user_name VARCHAR(255) ,
- v_guest_last_login_time TIMESTAMP WITH TIME ZONE ,
- v_guest_last_logout_time TIMESTAMP WITH TIME ZONE ,
v_console_user_id UUID,
v_guest_os VARCHAR(255) ,
v_migrating_to_vds UUID ,
@@ -338,8 +334,6 @@
UPDATE vm_dynamic
SET app_list = v_app_list,guest_cur_user_name = v_guest_cur_user_name,
console_cur_user_name = v_console_cur_user_name,
- guest_last_login_time = v_guest_last_login_time,
- guest_last_logout_time = v_guest_last_logout_time,
console_user_id = v_console_user_id,
guest_os = v_guest_os,migrating_to_vds = v_migrating_to_vds,RUN_ON_VDS =
v_run_on_vds,
status = v_status,vm_host = v_vm_host,vm_ip = v_vm_ip,vm_fqdn =
v_vm_fqdn,
--
To view, visit http://gerrit.ovirt.org/35505
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I70ade14df12537c6593dd3fc992ad62c3b4cd762
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Vinzenz Feenstra <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches