Skip to content

Commit 5e94db2

Browse files
Fix allAsyncAPIs envNames creation (#2427)
1 parent ba9394b commit 5e94db2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/cmd/get.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ func getAPIsByEnv(env cliconfig.Environment) (string, error) {
426426

427427
if len(allAsyncAPIs) > 0 {
428428
envNames := []string{}
429-
for range allRealtimeAPIs {
429+
for range allAsyncAPIs {
430430
envNames = append(envNames, env.Name)
431431
}
432432

0 commit comments

Comments
 (0)