diff --git a/confluent_server/confluent/config/attributes.py b/confluent_server/confluent/config/attributes.py index 7c5506aa..4ed63290 100644 --- a/confluent_server/confluent/config/attributes.py +++ b/confluent_server/confluent/config/attributes.py @@ -336,7 +336,7 @@ node = { 'description': ('Indicate logging level to apply to console. Valid ' 'values are currently "full", "interactive", and ' '"none". Defaults to "full".'), - 'validvalues': ('full', 'interactive', 'none'), + 'validvalues': ('full', 'memory', 'interactive', 'none'), }, 'console.method': { 'description': ('Indicate the method used to access the console of ' diff --git a/confluent_server/confluent/consoleserver.py b/confluent_server/confluent/consoleserver.py index 29eed0f5..9f996a58 100644 --- a/confluent_server/confluent/consoleserver.py +++ b/confluent_server/confluent/consoleserver.py @@ -234,7 +234,7 @@ class ConsoleHandler(object): self._isondemand = False else: if (attrvalue[self.node]['console.logging']['value'] not in ( - 'full', '', 'buffer')): + 'full', '', 'memory')): self._isondemand = True if (attrvalue[self.node]['console.logging']['value']) in ('none', 'memory'): self._dologging = False