Added function to sanitize strings by escaping quotes (#2360)

This commit is contained in:
Ankit Chawla
2022-02-21 12:44:27 +05:30
committed by GitHub
parent f45d85f30a
commit fe5e5f592b
7 changed files with 61 additions and 1 deletions
+3
View File
@@ -27,6 +27,8 @@ import (
"github.com/graymeta/stow"
"github.com/pkg/errors"
"go.uber.org/zap"
"github.com/fission/fission/pkg/utils"
)
type (
@@ -173,6 +175,7 @@ func (client *StowClient) copyFileToStream(fileId string, w io.Writer) error {
return ErrWritingFileIntoResponse
}
fileId = utils.EscapeQuotes(fileId)
client.logger.Debug("successfully wrote file into httpresponse", zap.String("file", fileId))
return nil
}