Skip to content

Commit

Permalink
Merge pull request #7393 from readthedocs/humitos/remove-comma-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Aug 18, 2020
2 parents 35a32f3 + d956443 commit 05dcce6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readthedocs/builds/tasks.py
Expand Up @@ -50,7 +50,7 @@ def route_for_task(self, task, args, kwargs, **__):
# Do not override the queue defined in the project itself
if project.build_queue:
log.info(
'Skipping routing task because project has a custom queue. project=%s, queue=%s',
'Skipping routing task because project has a custom queue. project=%s queue=%s',
project.slug, project.build_queue,
)
return project.build_queue
Expand All @@ -62,7 +62,7 @@ def route_for_task(self, task, args, kwargs, **__):
for build in last_builds.iterator():
if build.config.get('conda', None):
log.info(
'Routing task because project uses conda. project=%s, queue=%s',
'Routing task because project uses conda. project=%s queue=%s',
project.slug, self.BUILD_LARGE_QUEUE,
)
return self.BUILD_LARGE_QUEUE
Expand All @@ -71,7 +71,7 @@ def route_for_task(self, task, args, kwargs, **__):
if queryset.count() < self.N_BUILDS:
log.info(
'Routing task because it does not have enough success builds yet. '
'project=%s, queue=%s',
'project=%s queue=%s',
project.slug, self.BUILD_LARGE_QUEUE,
)
return self.BUILD_LARGE_QUEUE
Expand Down

0 comments on commit 05dcce6

Please sign in to comment.