summaryrefslogtreecommitdiff
path: root/plugin/protocol/http2/src
diff options
context:
space:
mode:
authorfengweihao <[email protected]>2023-07-11 16:28:52 +0800
committerfengweihao <[email protected]>2023-07-11 16:28:52 +0800
commit2451bd795c801ac4bf961a28978fdf8a34dfcbfc (patch)
treef1769b096c84c1201e0653ed39e87511aee965bf /plugin/protocol/http2/src
parent868da4f642615eced38f6c5e9247fcc5be4c67cd (diff)
TSG-16056 修复deny动作,修复tsg_lua多线程调用问题和tfe编译告警v4.8.32-20230711
Diffstat (limited to 'plugin/protocol/http2/src')
-rw-r--r--plugin/protocol/http2/src/http2_stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/protocol/http2/src/http2_stream.cpp b/plugin/protocol/http2/src/http2_stream.cpp
index c5ea3b3..c96e0fa 100644
--- a/plugin/protocol/http2/src/http2_stream.cpp
+++ b/plugin/protocol/http2/src/http2_stream.cpp
@@ -1099,7 +1099,7 @@ static int http2_submit_frame_goaway(struct tfe_h2_stream *connection, const ngh
}
finish:
TFE_LOG_DEBUG(logger()->handle, "%s, %d, submit goaway, stream_id:%d, action:%d, errod_code:%d, data:%.*s", connection->tf_stream->str_stream_info,
- dir, goaway->last_stream_id, connection->stream_action, goaway->error_code, goaway->opaque_data_len, goaway->opaque_data);
+ dir, goaway->last_stream_id, connection->stream_action, goaway->error_code, (int)goaway->opaque_data_len, goaway->opaque_data);
connection->goaway = 1;
connection->stream_action = stream_action;
return 0;