Skip to content
Snippets Groups Projects
Commit 728db398 authored by Sören Henning's avatar Sören Henning
Browse files

Merge branch '230-throw-custom-exception' into 'theodolite-kotlin'

Throw DeploymentFailedException if patcher creating fails

See merge request !146
parents 5ec2003c 59a6f4be
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!146Throw DeploymentFailedException if patcher creating fails,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
Pipeline #3524 passed
package theodolite.patcher
import io.fabric8.kubernetes.api.model.KubernetesResource
import theodolite.util.DeploymentFailedException
import theodolite.util.PatcherDefinition
/**
......@@ -27,7 +28,9 @@ class PatcherFactory {
k8sResources: List<Pair<String, KubernetesResource>>
): Patcher {
val resource =
k8sResources.filter { it.first == patcherDefinition.resource }.map { resource -> resource.second }[0]
k8sResources.filter { it.first == patcherDefinition.resource }.map { resource -> resource.second }.firstOrNull()
?: throw DeploymentFailedException("Could not find resource ${patcherDefinition.resource}")
return when (patcherDefinition.type) {
"ReplicaPatcher" -> ReplicaPatcher(resource)
"NumNestedGroupsLoadGeneratorReplicaPatcher" -> NumNestedGroupsLoadGeneratorReplicaPatcher(resource)
......
package theodolite.util
class DeploymentFailedException(message:String): Exception(message) {
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment