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

HPCC-30989 Fix jobId log column on thormanager #18125

Merged
Merged
Changes from all commits
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
4 changes: 4 additions & 0 deletions thorlcr/master/thgraphmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,10 @@ void thorMain(ILogMsgHandler *logHandler, const char *wuid, const char *graphNam
{
if (!streq(currentWuid, wuid))
{
queryLogMsgManager()->removeJobId(thorJob.queryJobID());
LogMsgJobId thorJobId = queryLogMsgManager()->addJobId(wuid);
thorJob.setJobID(thorJobId);
setDefaultJobId(thorJobId);
// perhaps slightly overkill, but avoid checking/locking wuid to add pod info.
// if this instance has already done so.
auto it = publishedPodWuids.find(wuid.str());
Expand Down
Loading