Douglas Schilling Landgraf has uploaded a new change for review. Change subject: backend: AuditLogDirector - replace <UNKNOWN> string ......................................................................
backend: AuditLogDirector - replace <UNKNOWN> string <UNKNOWN> is the string for unauthenticated users in the event tab. Replacing the string to non interactive user. Change-Id: I81c2cab403ec045a617ed1190df716c1620338a8 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=922520 Signed-off-by: Douglas Schilling Landgraf <[email protected]> --- M backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/auditloghandling/AuditLogDirector.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/27/19627/1 diff --git a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/auditloghandling/AuditLogDirector.java b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/auditloghandling/AuditLogDirector.java index f40947c..976f0c5 100644 --- a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/auditloghandling/AuditLogDirector.java +++ b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dal/dbbroker/auditloghandling/AuditLogDirector.java @@ -27,7 +27,7 @@ private static final Map<AuditLogType, AuditLogSeverity> severities = new EnumMap<AuditLogType, AuditLogSeverity>(AuditLogType.class); private static final Pattern pattern = Pattern.compile("\\$\\{\\w*\\}"); // match ${<alphanumeric>...} - static final String UNKNOWN_VARIABLE_VALUE = "<UNKNOWN>"; + static final String UNKNOWN_VARIABLE_VALUE = "non interactive user"; private static final String APP_ERRORS_MESSAGES_FILE_NAME = "bundles/AuditLogMessages"; static { -- To view, visit http://gerrit.ovirt.org/19627 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I81c2cab403ec045a617ed1190df716c1620338a8 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Douglas Schilling Landgraf <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
