Dhandapani Gopal has posted comments on this change.

Change subject: engine: Added new column 'ssh_key_fingerprint' in the 
vds_static table
......................................................................


Patch Set 2: (5 inline comments)

....................................................
File 
backend/manager/dbscripts/upgrade/03_01_1360_add_fingerprint_column_to_vds_static.sql
Line 1: --Add fingerprint field into vds_static
Done


Line 1: --Add fingerprint field into vds_static
Line 2: SELECT fn_db_add_column('vds_static', 'fingerprint', 'character 
varying(128)');
Changed the column name fingerprint to ssh_key_fingerprint


....................................................
File backend/manager/dbscripts/vds_sp.sql
Line 332:     v_pm_port INTEGER ,
Line 333:     v_pm_options VARCHAR(4000) ,
Line 334:     v_pm_enabled BOOLEAN,
Line 335:     v_vds_spm_priority INTEGER,
Line 336:     v_fingerprint VARCHAR(128))
Done
Line 337:    AS $procedure$
Line 338: BEGIN
Line 339:    IF v_vds_unique_id IS NULL OR NOT EXISTS(SELECT vds_name FROM 
vds_static WHERE vds_unique_id = v_vds_unique_id) then
Line 340:       BEGIN


....................................................
File 
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/BusinessEntitiesDefinitions.java
Line 29:     public static final int HOST_PM_PASSWD_SIZE = 50;
Line 30:     public static final int HOST_PM_TYPE_SIZE = 20;
Line 31:     public static final int HOST_MIN_SPM_PRIORITY = -1;
Line 32:     public static final int HOST_MAX_SPM_PRIORITY = 10;
Line 33:     public static final int SSH_FINGERPRINT_SIZE = 128;
Done
Line 34: 
Line 35:     // Network Interface (vm_interface)
Line 36:     public static final int NETWORK_NAME_SIZE = 50;
Line 37: 


....................................................
File 
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VdsStatic.java
Line 128:     private boolean autoRecoverable = true;
Line 129: 
Line 130:     @Size(max = BusinessEntitiesDefinitions.SSH_FINGERPRINT_SIZE)
Line 131:     @Column(name = "fingerprint")
Line 132:     private String fingerprint;
Done
Line 133: 
Line 134:     public boolean isAutoRecoverable() {
Line 135:         return autoRecoverable;
Line 136:     }


--
To view, visit http://gerrit.ovirt.org/7171
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I7abe03b62dc15bb135fa02e0a43b763abd8872af
Gerrit-PatchSet: 2
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Dhandapani Gopal <[email protected]>
Gerrit-Reviewer: Alon Bar-Lev <[email protected]>
Gerrit-Reviewer: Dhandapani Gopal <[email protected]>
Gerrit-Reviewer: Kanagaraj M <[email protected]>
Gerrit-Reviewer: Omer Frenkel <[email protected]>
Gerrit-Reviewer: Shireesh Anjal <[email protected]>
Gerrit-Reviewer: Yair Zaslavsky <[email protected]>
Gerrit-Reviewer: oVirt Jenkins CI Server
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to