From 35cb736b8a7ec4c0cfac1dd0b96b8087bbe8a8e9 Mon Sep 17 00:00:00 2001 From: Peter Barron Date: Sat, 25 Aug 2018 11:04:11 +0100 Subject: [PATCH] readyReplicas field on Status on Deployment V1 is misspelt (#197) --- client/src/main/scala/skuber/apps/v1/Deployment.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/scala/skuber/apps/v1/Deployment.scala b/client/src/main/scala/skuber/apps/v1/Deployment.scala index a6dde774..3a408aac 100644 --- a/client/src/main/scala/skuber/apps/v1/Deployment.scala +++ b/client/src/main/scala/skuber/apps/v1/Deployment.scala @@ -146,7 +146,7 @@ object Deployment { implicit val depStatusFmt: Format[Status] = ( (JsPath \ "replicas").formatMaybeEmptyInt() and (JsPath \ "updatedReplicas").formatMaybeEmptyInt() and - (JsPath \ "readydReplicas").formatMaybeEmptyInt() and + (JsPath \ "readyReplicas").formatMaybeEmptyInt() and (JsPath \ "availableReplicas").formatMaybeEmptyInt() and (JsPath \ "unavailableReplicas").formatMaybeEmptyInt() and (JsPath \ "observedGeneration").formatMaybeEmptyInt() and