4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-22 15:07:14 +00:00

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

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)))
}