bdoyle0182 commented on code in PR #4957:
URL: https://github.com/apache/openwhisk/pull/4957#discussion_r1108946336


##########
common/scala/src/main/scala/org/apache/openwhisk/http/BasicRasService.scala:
##########
@@ -39,4 +40,14 @@ trait BasicRasService extends BasicHttpService {
   val ping = path("ping") {
     get { complete("pong") }
   }
+  val ready = path("ready") {
+    get {
+      if (readyState) {
+        complete("ok")
+      } else {
+        logging.warn(this, "not ready...")

Review Comment:
   can this just be a debug? I think ready route returning 503 should be self 
explanatory



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to