Merge pull request #724 from bedwards/bedwards-fluentd-patch

Update types.py to support fluentd logging driver
This commit is contained in:
Joffrey F 2015-08-18 12:33:13 -07:00
commit a6064e356e
1 changed files with 3 additions and 1 deletions

View File

@ -6,9 +6,11 @@ class LogConfigTypesEnum(object):
'json-file',
'syslog',
'journald',
'gelf',
'fluentd',
'none'
)
JSON, SYSLOG, JOURNALD, NONE = _values
JSON, SYSLOG, JOURNALD, GELF, FLUENTD, NONE = _values
class DictType(dict):