Commit c99e15b3 by Pinal Shah Committed by nixonrodrigues

ATLAS-3601 :- No LABEL_DELETE event is audited when last label is deleted.

parent 75e678da
...@@ -158,7 +158,7 @@ public abstract class AbstractStorageBasedAuditRepository implements Service, En ...@@ -158,7 +158,7 @@ public abstract class AbstractStorageBasedAuditRepository implements Service, En
protected byte[] getKey(String id, Long ts, int index) { protected byte[] getKey(String id, Long ts, int index) {
assert id != null : "entity id can't be null"; assert id != null : "entity id can't be null";
assert ts != null : "timestamp can't be null"; assert ts != null : "timestamp can't be null";
String keyStr = id + FIELD_SEPARATOR + ts + FIELD_SEPARATOR + index; String keyStr = id + FIELD_SEPARATOR + ts + FIELD_SEPARATOR + index + FIELD_SEPARATOR + System.currentTimeMillis();
return Bytes.toBytes(keyStr); return Bytes.toBytes(keyStr);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment