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
val resourcesResponse = retroRestClient.templateVersionResources(it.latestBuild.templateVersionID).execute()
120
+
if (!resourcesResponse.isSuccessful) {
121
+
throwWorkspaceResponseException("Unable to retrieve template resources for ${it.name} from $url: code ${resourcesResponse.code()}, reason: ${resourcesResponse.message().ifBlank { "no reason provided" }}")
122
+
}
123
+
it.toAgentModels(resourcesResponse.body()!!)
124
+
}
125
+
}
126
+
108
127
funbuildInfo(): BuildInfo {
109
128
val buildInfoResponse = retroRestClient.buildInfo().execute()
0 commit comments