Skip to content

Commit 9f546e7

Browse files
committed
removed quotes from base url
1 parent 2fe1aed commit 9f546e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (g DumpStreamInfo) Validate() error {
8585
type BaseUrls []string
8686

8787
func (b BaseUrls) Parse() string {
88-
return fmt.Sprintf("--base_urls=\"%s\"", strings.Join(b, ","))
88+
return fmt.Sprintf("--base_urls=%s", strings.Join(b, ","))
8989
}
9090

9191
func (b BaseUrls) Validate() error {

0 commit comments

Comments
 (0)