The path being polled is /api/v1 which could possibly change in the future thus this call is not future-proof. It's possible that if the path is removed, but the server is still running, our poll will think OW is not ready.
The proper path to poll is the / root path, which returns JSON metadata:
See: https://github.com/adobe/aio-cli-plugin-app/blob/36027b9ff67bb6473cd6e26360d8baa42fa66e89/src/lib/app-helper.js#L289
The path being polled is
/api/v1
which could possibly change in the future thus this call is not future-proof. It's possible that if the path is removed, but the server is still running, our poll will think OW is not ready.The proper path to poll is the
/
root path, which returns JSON metadata: