Skip to content

Commit

Permalink
Fix updatedBy field in event stream
Browse files Browse the repository at this point in the history
  • Loading branch information
aarshi0301 committed Dec 1, 2023
1 parent 0590a7c commit 0a7b22f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ private AtlasEntityHeader mapVertexToAtlasEntityHeader(AtlasVertex entityVertex,
ret.setLabels(getLabels(entityVertex));

ret.setCreatedBy(GraphHelper.getCreatedByAsString(entityVertex));
ret.setUpdatedBy(GraphHelper.getModifiedByAsString(entityVertex));
ret.setUpdatedBy(RequestContext.get().getUser());
ret.setCreateTime(new Date(GraphHelper.getCreatedTime(entityVertex)));
ret.setUpdateTime(new Date(GraphHelper.getModifiedTime(entityVertex)));

Expand Down

0 comments on commit 0a7b22f

Please sign in to comment.