Add a tag backfill worker to fully backfill the new-style Tag's in the background

This commit is contained in:
Joseph Schorr 2018-12-06 16:30:47 -05:00
parent 57e93a82c9
commit eb7591183d
5 changed files with 598 additions and 1 deletions

View file

@ -0,0 +1,4 @@
#!/bin/sh
# Start the logger
exec logger -i -t tagbackfillworker

View file

@ -0,0 +1,9 @@
#! /bin/bash
echo 'Starting tag backfill worker'
QUAYPATH=${QUAYPATH:-"."}
cd ${QUAYDIR:-"/"}
PYTHONPATH=$QUAYPATH venv/bin/python -m workers.tagbackfillworker 2>&1
echo 'Repository tag backfill exited'