Fix showing active queues in yggdrasilctl

This commit is contained in:
Neil Alexander 2018-09-27 12:55:41 +01:00
parent b530916044
commit 95c551d011
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -203,9 +203,9 @@ func main() {
return
} else {
fmt.Println("Active queues:")
for k, v := range queues {
fmt.Printf("[%d] - Queue '%v', size: %d, packets: %d\n", k+1,
v.(map[string]interface{})["queue_id"].([]byte),
for _, v := range queues {
fmt.Printf("- Stream ID: %v, size: %d, packets: %d\n",
[]byte(v.(map[string]interface{})["queue_id"].(string)),
uint(v.(map[string]interface{})["queue_size"].(float64)),
uint(v.(map[string]interface{})["queue_packets"].(float64)))
}