Merge remote-tracking branch 'origin/topic/johanna/gh-3700'

* origin/topic/johanna/gh-3700:
  Fix cid propagation into files.log

(cherry picked from commit d7e30d9ee2)
This commit is contained in:
Tim Wojtulewicz 2024-04-29 09:09:28 -07:00
parent df37ccf73d
commit a1d621748e

View file

@ -603,7 +603,7 @@ event file_state_remove(f: fa_file) &priority=-10
# by reference in Log::write() rather than by copy. # by reference in Log::write() rather than by copy.
local info = |f$conns| > 1 ? copy(f$info) : f$info; local info = |f$conns| > 1 ? copy(f$info) : f$info;
info$uid = c$uid; info$uid = c$uid;
info$id = cid; info$id = c$id;
Log::write(Files::LOG, info); Log::write(Files::LOG, info);
} }
} }