ArqMode#

class safir.arq.ArqMode(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)#

Bases: str, Enum

Mode configuration for the Arq queue.

Attributes Summary

production

Normal usage of arq, with a Redis broker.

test

Use the MockArqQueue to test an API service without standing up a full distributed worker queue.

Attributes Documentation

production = 'production'#

Normal usage of arq, with a Redis broker.

test = 'test'#

Use the MockArqQueue to test an API service without standing up a full distributed worker queue.