File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
services/backend/kubernetes
providers/costcenter/src/service/backend Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -137,9 +137,7 @@ async function watchKubeconfigUpdate(
137137 return currentKubeconfig ;
138138 }
139139 }
140- } catch ( err ) {
141- console . error ( `Failed to get status for ${ name } :` , err ) ;
142- }
140+ } catch ( err ) { }
143141
144142 if ( Date . now ( ) - startTime >= timeout ) {
145143 console . error (
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ async function watchClusterObject({
4646 return body . status . kubeConfig as string ;
4747 }
4848 } catch ( err ) {
49- console . error ( `Failed to get status for ${ name } : ${ err } ` ) ;
49+ console . error ( err ) ;
5050 }
5151 if ( Date . now ( ) - startTime >= timeout ) {
5252 console . error ( `Timed out after ${ timeout } ms.` ) ;
@@ -88,7 +88,7 @@ async function watchCustomClusterObject({
8888 return body ;
8989 }
9090 } catch ( err ) {
91- console . error ( `Failed to get status for ${ name } : ${ err } ` ) ;
91+ console . error ( err ) ;
9292 }
9393 if ( Date . now ( ) - startTime >= timeout ) {
9494 console . error ( `Timed out after ${ timeout } ms.` ) ;
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ export async function watchClusterObject({
301301 return body ;
302302 }
303303 } catch ( err ) {
304- console . error ( `Failed to get status for ${ name } : ${ err } ` ) ;
304+ console . error ( err ) ;
305305 }
306306 if ( Date . now ( ) - startTime >= timeout ) {
307307 console . error ( `Timed out after ${ timeout } ms.` ) ;
You can’t perform that action at this time.
0 commit comments