Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions src/clusterfuzz/_internal/cron/oss_fuzz_cc_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def sync_project_cc_group(project_name, info):

def main():
"""Sync OSS-Fuzz projects groups used to CC owners in the issue tracker."""
logs.info('OSS-Fuzz CC groups sync started.')
projects = project_setup.get_oss_fuzz_projects()

for project, info in projects:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def create_google_group(group_name: str,
"""Create a google group."""
identity_service = get_identity_api()

customer_id = customer_id or str(
local_config.ProjectConfig().get('groups_customer_id'))
customer_id = customer_id or local_config.ProjectConfig().get(
Comment thread
decoNR marked this conversation as resolved.
'groups_customer_id')
if not customer_id:
logs.error('No customer ID set. Unable to create a new google group.')
return None
Expand Down
Loading