Fix. Stack overflow when calls base actor. (#2706)
This commit is contained in:
parent
116ba64fcb
commit
9e38643c40
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in New Issue