We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce22bf2 commit 055c9acCopy full SHA for 055c9ac
pkg/dataplane/http/context.go
@@ -198,7 +198,9 @@ func (c *context) GetContainerContentsSync(getContainerContentsInput *v3io.GetCo
198
var queryBuilder strings.Builder
199
if getContainerContentsInput.Path != "" {
200
queryBuilder.WriteString("prefix=")
201
- queryBuilder.WriteString(url.QueryEscape(getContainerContentsInput.Path))
+ encodedPrefix := url.QueryEscape(getContainerContentsInput.Path)
202
+ encodedPrefix = strings.Replace(encodedPrefix, "+", "%20", -1)
203
+ queryBuilder.WriteString(encodedPrefix)
204
}
205
206
if getContainerContentsInput.DirectoriesOnly {
0 commit comments