a5bdd9c516
To not deserialize over-sized requests with content body, we also need transport-specific size restrictions. They are come before input validation, and are also configurable. Change-Id: I06434431b3df9250c05472b4d91a53dfedb682d2
14 lines
259 B
Python
14 lines
259 B
Python
"""Marconi Transport Drivers"""
|
|
|
|
from marconi.common import config
|
|
from marconi.transport import base
|
|
|
|
OPTIONS = {
|
|
'auth_strategy': ""
|
|
}
|
|
|
|
CFG = config.project('marconi').from_options(**OPTIONS)
|
|
|
|
# Hoist into package namespace
|
|
DriverBase = base.DriverBase
|