2.4.3 出现Recycling node's parent should be null!

一段老代码,用了很久了,一直没问题,这次升级到2.4.3出现的问题。
一个屏幕中间的飘字,里面是个richtext
每次都生成一份新的出来
let node = cc.instantiate(hintNode)
node.active = true
node.getComponent(cc.RichText).string = text

过了几秒
node.destroy()

如果正常调用都没有问题,但是快速生成多个的时候(快速点击),就会崩溃。
image
原因是:
pool.put -> cc.assert(!node._parent, “Recycling node’s parent should be null!”);
_resetState -> pool.put
richText.onEnable
node.active = true

请问这个是什么原因导致的,该如何解决