Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
call api async
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan committed Dec 31, 2021
1 parent 4d2bb3b commit 50db4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/apis/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func batchExport(entities []proxy, entityType string, folder string, allRevision
if len(entity.Revision) == 1 {
lastRevision := maxRevision(entity.Revision)
clilog.Info.Printf("Downloading revision %s of proxy %s\n", lastRevision, entity.Name)
apiclient.FetchAsyncBundle(entityType, folder, entity.Name, lastRevision, allRevisions, &bwg)
go apiclient.FetchAsyncBundle(entityType, folder, entity.Name, lastRevision, allRevisions, &bwg)
} else {

numRevisions := len(entity.Revision)
Expand Down

0 comments on commit 50db4e4

Please sign in to comment.