nanoMQ full 桥接 emqx,断网重连后,消息未重发到emqx

docker 版 emqx/nanomq:0.18.2-full , 桥接 emqx 5.8.6
桥接支持重连后重发吗?做断网重连重发测试,断网前发到 nanomq 的消息,在重连成功后,没有转发到桥接的 emqx, 是配置不对吗?具体配置如下:

bridges.mqtt {
	nodes = [
		{
			name = emqx
			connector {
				server = "mqtt-tcp://239.224.195.30:1883"
				proto_ver = 5
				username = "mac_local"
				password = "mac_local"
                clientid = "mac_local"  
				clean_start = false
				keepalive = 60s
                conn_properties {
                    session_expiry_interval = 4294967295
                }

			}
			forwards = ["topic1/#", "topic2/#"]
			subscription = [
				{
					topic = "cmd/topic1"
					qos = 1
				},
				{
					topic = "cmd/topic2"
					qos = 2
				}
			]
			parallel = 2
			max_send_queue_len = 1024
			max_recv_queue_len = 1024
		}
		
	]
}

bridges.mqtt.cache {
    disk_cache_size = 102400
    mounted_file_path = "/tmp/bridge/"
    flush_mem_threshold = 1
    resend_interval = 5000
}

/tmp/bridge/ 目录已提前创建,已给 777 权限,目录下面没看到有 .db 文件

有日志可以帮你看看,另外旧版本也不做开源社区支持

好的,感谢,我先下载个最新版本试一下