Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Log package_name_suffix configuration during startup #105

Merged
merged 1 commit into from
Jan 7, 2020
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
5 changes: 3 additions & 2 deletions omps/quay.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,12 @@ def initialize(self, config):
for org_name, org_conf in self._organizations.items():
logger.info(
'Organization "%s" configured: public=%s, oauth_access=%s, '
'replacing_registry_enabled=%s',
'replacing_registry_enabled=%s, package_name_suffix=%s',
org_name,
org_conf.get('public', False),
bool(org_conf.get('oauth_token')),
bool(org_conf.get('replace_registry'))
bool(org_conf.get('replace_registry')),
org_conf.get('package_name_suffix'),
)

def get_org(self, organization, cnr_token):
Expand Down