Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • arkindex/workers/thumbnails
1 result
Show changes
Commits on Source (2)
...@@ -4,7 +4,7 @@ version: 2 ...@@ -4,7 +4,7 @@ version: 2
workers: workers:
- slug: thumbnails-generator - slug: thumbnails-generator
name: Thumbnails Generator name: Thumbnails Generator
type: generator type: Utils
docker: docker:
build: Dockerfile build: Dockerfile
configuration: configuration:
......
...@@ -127,7 +127,7 @@ class ThumbnailsGenerator(ElementsWorker): ...@@ -127,7 +127,7 @@ class ThumbnailsGenerator(ElementsWorker):
def main() -> None: def main() -> None:
ThumbnailsGenerator( ThumbnailsGenerator(
description="Worker to generate thumbnails for Arkindex elements" description="Worker to generate thumbnails for Arkindex elements: Utility process"
).run() ).run()
......