This commit is contained in:
Mike Place 2016-07-16 12:45:08 -06:00
parent c4395ae84e
commit 2c1c92c48e
2 changed files with 2 additions and 2 deletions

View file

@ -67,6 +67,7 @@ else:
_DFLT_IPC_MODE = 'ipc'
_MASTER_TRIES = 1
def _gather_buffer_space():
'''
Gather some system data and then calculate
@ -1577,7 +1578,6 @@ def _read_conf_file(path):
return conf_opts
def _absolute_path(path, relative_to=None):
'''
Return an absolute path. In case ``relative_to`` is passed and ``path`` is

View file

@ -512,7 +512,7 @@ class IPCMessagePublisher(object):
stream = IOStream(
connection,
io_loop=self.io_loop,
max_write_buffer_size = self.opts['ipc_write_buffer']
max_write_buffer_size=self.opts['ipc_write_buffer']
)
self.streams.add(stream)
except Exception as exc: