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