rename all WriteResult to Flush

This commit is contained in:
2024-09-20 22:15:24 +03:00
parent 9925b3a2e5
commit 63c7c65a00
4 changed files with 13 additions and 13 deletions

View File

@@ -87,7 +87,7 @@ func(f *BaseSessionHandler) Process(rqs RequestSession) (RequestSession, error)
func(f *BaseSessionHandler) Output(rqs RequestSession) (RequestSession, error) {
var err error
_, err = rqs.Engine.WriteResult(rqs.Ctx, rqs.Writer)
_, err = rqs.Engine.Flush(rqs.Ctx, rqs.Writer)
return rqs, err
}