-
Notifications
You must be signed in to change notification settings - Fork 481
Closed
Labels
Description
If query strings are "encoded", *
is turned into %2A
. This is not supported by vts, see below:
# curl '127.0.0.1:9001/status/control?cmd=reset&group=%2A'
{"processingReturn":false,"processingCommandString":"reset","processingGroupString":"%2A","processingZoneString":"","processingCounts":0}
# curl '127.0.0.1:9001/status/control?cmd=reset&group=*'
{"processingReturn":true,"processingCommandString":"reset","processingGroupString":"*","processingZoneString":"","processingCounts":8}