![kgriffs](/assets/img/avatar_default.png)
In the interest of conforming to the de-facto coding standard for OpenStack projects, this patch enables all checks for flake8 and hacking, plus fixes everything reported. Also, several docstrings were edited for clarity and grammar. Change-Id: If85c4e420811b6df8eb55de1b5f07a0a8acfceff Implements: blueprint grizzly-debt
12 lines
230 B
Python
12 lines
230 B
Python
"""Marconi Transport Drivers"""
|
|
|
|
from marconi.transport import base
|
|
|
|
|
|
MAX_QUEUE_METADATA_SIZE = 64 * 1024
|
|
"""Maximum metadata size per queue when serialized as JSON"""
|
|
|
|
|
|
# Hoist into package namespace
|
|
DriverBase = base.DriverBase
|