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

explicitly saving the merged version, semaphore and list #558

Merged
merged 1 commit into from
Jan 9, 2024
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
2 changes: 1 addition & 1 deletion tr_sys/tr_ars/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1386,7 +1386,7 @@ def merge_received(parent,message_to_merge, agent_name, counter=0):
parent.merged_versions_list=[pk_infores_merge]
else:
parent.merged_versions_list.append(pk_infores_merge)
parent.save()
parent.save(update_fields=['merge_semaphore','merged_versions_list', 'merged_version'])
logging.info("returning new_merged_message to be post processed with pk: %s" % str(new_merged_message.pk))
return new_merged_message
except Exception as e:
Expand Down