File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,21 +69,21 @@ class Client {
6969
7070 getLocationsStatus ( callback ) {
7171 const command = new GetLocationsStatusCommand ( { } ) ;
72- this . client . send ( command )
72+ this . client . proxyBackbeatApis . send ( command )
7373 . then ( data => callback ( null , data ) )
7474 . catch ( err => callback ( err ) ) ;
7575 }
7676
7777 listFailed ( params , callback ) {
7878 const command = new ListFailedCommand ( params ) ;
79- this . client . send ( command )
79+ this . client . proxyBackbeatApis . send ( command )
8080 . then ( data => callback ( null , data ) )
8181 . catch ( err => callback ( err ) ) ;
8282 }
8383
8484 retryFailedObjects ( params , callback ) {
8585 const command = new RetryFailedObjectsCommand ( params ) ;
86- this . client . send ( command )
86+ this . client . proxyBackbeatApis . send ( command )
8787 . then ( data => callback ( null , data ) )
8888 . catch ( err => callback ( err ) ) ;
8989 }
You can’t perform that action at this time.
0 commit comments