Skip to content

Commit

Permalink
Allow ampersand in file path (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
alxtkr77 authored Dec 27, 2022
1 parent 32689e8 commit ce22bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dataplane/http/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (c *context) GetContainerContentsSync(getContainerContentsInput *v3io.GetCo
var queryBuilder strings.Builder
if getContainerContentsInput.Path != "" {
queryBuilder.WriteString("prefix=")
queryBuilder.WriteString(url.PathEscape(getContainerContentsInput.Path))
queryBuilder.WriteString(url.QueryEscape(getContainerContentsInput.Path))
}

if getContainerContentsInput.DirectoriesOnly {
Expand Down

0 comments on commit ce22bf2

Please sign in to comment.