Fix. Stack overflow when calls base actor. (#2706)

This commit is contained in:
Alexey Melnichuk
2017-06-22 09:14:28 +03:00
committed by FusionPBX
parent af71ec5ca8
commit c36be184b8

View File

@@ -433,7 +433,7 @@ local default_timeout = 60000
local default_poll_interval = 60000 * 30
function EventConsumer:__init(pid_file, timeout)
self.__base.__init(self)
self = EventConsumer.__base.__init(self)
if pid_file then
assert(type(pid_file) == 'string')