Daniel Erez has uploaded a new change for review. Change subject: core: AuditLogType - add CINDER_PROVIDER_ERROR ......................................................................
core: AuditLogType - add CINDER_PROVIDER_ERROR Adding CINDER_PROVIDER_ERROR to AuditLogType/AuditLogMessages. Change-Id: I22591102129eeb09d0feee0c67200e66c563d78f Bug-Url: https://bugzilla.redhat.com/1185826 Signed-off-by: Daniel Erez <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java M backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties 2 files changed, 5 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/10/38910/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java index fda4dc1..8451fda 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/AuditLogType.java @@ -1157,7 +1157,10 @@ MAC_POOL_EDIT_SUCCESS(10702), MAC_POOL_EDIT_FAILED(10703, AuditLogSeverity.ERROR), MAC_POOL_REMOVE_SUCCESS(10704), - MAC_POOL_REMOVE_FAILED(10705, AuditLogSeverity.ERROR); + MAC_POOL_REMOVE_FAILED(10705, AuditLogSeverity.ERROR), + + // Cinder + CINDER_PROVIDER_ERROR(10750, AuditLogSeverity.ERROR); private int intValue; // indicates time interval in seconds on which identical events from same instance are suppressed. diff --git a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties index c3583eb..8af71dc 100644 --- a/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties +++ b/backend/manager/modules/dal/src/main/resources/bundles/AuditLogMessages.properties @@ -952,3 +952,4 @@ USER_FAILED_TO_UPDATE_CPU_PROFILE=Failed to update CPU Profile ${ProfileName} (User: ${UserName}). IMPORTEXPORT_NO_PROXY_HOST_AVAILABLE_IN_DC=No Host in Data Center '${StoragePoolName}' can serve as a proxy to retrieve remote VMs information (User: ${UserName}). IMPORTEXPORT_HOST_CANNOT_SERVE_AS_PROXY=Host ${VdsName} cannot be used as a proxy to retrieve remote VMs information since it is not up (User: ${UserName}). +CINDER_PROVIDER_ERROR=An error occurred on Cinder provider: '${CinderException}' \ No newline at end of file -- To view, visit https://gerrit.ovirt.org/38910 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I22591102129eeb09d0feee0c67200e66c563d78f Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Daniel Erez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
