🐞 fix: 调整TFE conf 文件, 使用四元组分流; 调整metric接口调用位置

This commit is contained in:
wangmenglan
2023-06-05 13:57:16 +08:00
parent 4d26281338
commit 409dfb7e4b
7 changed files with 18 additions and 18 deletions

View File

@@ -363,7 +363,7 @@ succ:
return 0;
error:
mpack_tree_destroy(&tree);
tfe_cmsg_destroy(handler->cmsg);
tfe_cmsg_destroy(&handler->cmsg);
return -1;
}
@@ -392,7 +392,7 @@ void ctrl_packet_parser_init(struct ctrl_pkt_parser *handler)
void ctrl_packet_cmsg_destroy(struct ctrl_pkt_parser *handler)
{
if (handler) {
tfe_cmsg_destroy(handler->cmsg);
tfe_cmsg_destroy(&handler->cmsg);
if (handler->seq_header) {
free(handler->seq_header);