Fix. Stack overflow when calls base actor. (#2706)
This commit is contained in:
parent
af71ec5ca8
commit
c36be184b8
|
|
@ -433,7 +433,7 @@ local default_timeout = 60000
|
||||||
local default_poll_interval = 60000 * 30
|
local default_poll_interval = 60000 * 30
|
||||||
|
|
||||||
function EventConsumer:__init(pid_file, timeout)
|
function EventConsumer:__init(pid_file, timeout)
|
||||||
self.__base.__init(self)
|
self = EventConsumer.__base.__init(self)
|
||||||
|
|
||||||
if pid_file then
|
if pid_file then
|
||||||
assert(type(pid_file) == 'string')
|
assert(type(pid_file) == 'string')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue