@xenon-device-management/xenon 1.1.20 → 1.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/package.json
CHANGED
|
@@ -108,7 +108,7 @@ let WDAClient = class WDAClient {
|
|
|
108
108
|
for (const prefix of prefixes) {
|
|
109
109
|
try {
|
|
110
110
|
const isSessionless = !(options === null || options === void 0 ? void 0 : options.useSessionPath) &&
|
|
111
|
-
(['/status', '/health'
|
|
111
|
+
(['/status', '/health', '/wda/healthcheck'].includes(endpoint));
|
|
112
112
|
const url = `http://${targetHost}:${targetPort}${isSessionless ? '' : prefix}${endpoint}`;
|
|
113
113
|
// Principal Stability: Screenshots, activation, and script execution need longer timeouts.
|
|
114
114
|
// Heartbeats and Status checks should be snappy to fail-over quickly.
|
package/package.json
CHANGED