Skip to content

Commit b44dd91

Browse files
committed
Fixed response size counting
1 parent e0db8e0 commit b44dd91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/kqp/proxy_service/kqp_script_executions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1230,11 +1230,11 @@ class TGetScriptExecutionOperationQueryActor : public TQueryBase {
12301230
}
12311231
}
12321232

1233-
ResponseSizeBytes += Metadata.ByteSizeLong();
12341233
Finish();
12351234
}
12361235

12371236
void OnFinish(Ydb::StatusIds::StatusCode status, NYql::TIssues&& issues) override {
1237+
ResponseSizeBytes += Metadata.ByteSizeLong();
12381238
CheckResponseSize();
12391239

12401240
if (OperationStatus) {

0 commit comments

Comments
 (0)