Skip to content

Commit

Permalink
Fix agent the log line coalescing
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Oct 5, 2023
1 parent 79ef507 commit 3b1bfdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opensvc/core/collector/rpc.py
Expand Up @@ -412,7 +412,7 @@ def end_action(self, path, action, begin, end, cron, sid, alogfile, err):

try:
if last:
if last[1] == action and last[4] == pid and last[5] == rid and last[9] == rid_err:
if last[1] == action and last[4] == pid and last[5] == rid and last[10] == rid_err:
last[9] += "\n"+msg
continue
else:
Expand Down

0 comments on commit 3b1bfdb

Please sign in to comment.