فهرست منبع

Fix filestore-readonly crash from ERR_STREAM_UNABLE_TO_PIPE

GitOrigin-RevId: 405ad3210132702fffecdc091066321bc1ccc10c
Anna Claire Fields 4 ماه پیش
والد
کامیت
aa3715bd66
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  1. 5 0
      services/filestore/app/js/FileController.js

+ 5 - 0
services/filestore/app/js/FileController.js

@@ -62,6 +62,11 @@ function getFile(req, res, next) {
         return
       }
 
+      if (res.destroyed) {
+        fileStream.destroy()
+        return
+      }
+
       if (req.query.cacheWarm) {
         fileStream.destroy()
         return res.sendStatus(200).end()