Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DG-1960 Added task info in audit and kafka headers. #3904

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public abstract class ClassificationTask extends AbstractTask {
public static final String PARAM_PREVIOUS_CLASSIFICATION_RESTRICT_PROPAGATE_THROUGH_LINEAGE = "previousRestrictPropagationThroughLineage";

public static final String PARAM_PREVIOUS_CLASSIFICATION_RESTRICT_PROPAGATE_THROUGH_HIERARCHY = "previousRestrictPropagationThroughHierarchy";

public static final String X_ATLAN_TASK_GUID = "x-atlan-task-guid";

protected final AtlasGraph graph;
protected final EntityGraphMapper entityGraphMapper;
protected final DeleteHandlerDelegate deleteDelegate;
Expand Down Expand Up @@ -97,6 +98,7 @@ public AtlasTask.Status perform() throws AtlasBaseException {
}

RequestContext.get().setUser(userName, null);
RequestContext.get().addRequestContextHeader(X_ATLAN_TASK_GUID, getTaskGuid());
hr2904 marked this conversation as resolved.
Show resolved Hide resolved

try {
setStatus(IN_PROGRESS);
Expand Down
Loading