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

Bug/Sign Process #4217

Merged
merged 1 commit into from
Jan 16, 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
8 changes: 6 additions & 2 deletions cla-backend/cla/models/github_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,8 +741,12 @@ def update_change_request(self, installation_id, github_repository_id, change_re
for user_commit_summary in commit_authors:
cla.log.debug(f'{fn} - PR: {pull_request.number} for user: {user_commit_summary}')
futures.append(executor.submit(handle_commit_from_user, project,user_commit_summary,signed,missing))
for future in concurrent.futures.as_completed(futures):
cla.log.debug(f'{fn} - ThreadClosed for handle_commit_from_user')

#Wait for all threads to be finished before mobing on
executor.shutdown(wait=True)

for future in concurrent.futures.as_completed(futures):
cla.log.debug(f'{fn} - ThreadClosed for handle_commit_from_user')

# At this point, the signed and missing lists are now filled and updated with the commit user info

Expand Down
Loading