Skip to content

Commit

Permalink
fix scatter range (#11281)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Leung <rleungx@gmail.com>
  • Loading branch information
rleungx authored and jackysp committed Jul 17, 2019
1 parent db45460 commit 651632e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/http_handler.go
Expand Up @@ -823,8 +823,8 @@ func (h tableHandler) addScatterSchedule(startKey, endKey []byte, name string) e
}
input := map[string]string{
"name": "scatter-range",
"start_key": string(startKey),
"end_key": string(endKey),
"start_key": url.QueryEscape(string(startKey)),
"end_key": url.QueryEscape(string(endKey)),
"range_name": name,
}
v, err := json.Marshal(input)
Expand Down

0 comments on commit 651632e

Please sign in to comment.