From 489738c7d809eab7331f20d0e0edcfc7b4bf8ac5 Mon Sep 17 00:00:00 2001 From: Elad Ben-Israel Date: Mon, 9 Oct 2023 22:49:58 +0300 Subject: [PATCH] tweak --- tf-aws/workload.w | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf-aws/workload.w b/tf-aws/workload.w index a4c7213..c7e8b53 100644 --- a/tf-aws/workload.w +++ b/tf-aws/workload.w @@ -22,7 +22,7 @@ class _Chart extends k8s.Chart { if let port = props.port { readiness = cdk8s.Probe.fromHttpGet(x, port: port); } else { - throw "cannot implement readiness probe without a `port`"; + throw "Cannot setup readiness probe without a `port`"; } }