You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.error("UAA request for token failed: #{e.inspect}")
131
+
logger.error("UAA request for token failed: #{e.class} - #{e.message}")
132
132
raise
133
133
rescueUaaUnavailable,CF::UAA::UAAError=>e
134
134
ifTime.now.utc > retry_until
135
135
logger.error('Unable to establish a connection to UAA, no more retries, raising an exception.')
136
136
raiseUaaUnavailable
137
137
else
138
138
sleep_time=[delay,max_delay].min
139
-
logger.error("Failed to retrieve details from UAA: #{e.inspect}#{error_info_from_target_error(e)}")
139
+
logger.error("Failed to retrieve details from UAA: #{e.class} - #{e.message}#{error_info_from_target_error(e)}")
140
140
logger.info("Attempting to connect to the UAA. Total #{(retry_until - Time.now.utc).round(2)} seconds remaining. Next retry after #{sleep_time} seconds.")
@logger.error("Request to the diego backend failed with error: #{e.class} - #{e.message}")
169
170
@logger.info("Attempting to connect to the diego backend. Total #{(retry_until - Time.now.utc).round(2)} seconds remaining. Next retry after #{sleep_time} seconds.")
0 commit comments