From 8341601c6006f96e3798bfbeb430205fb4723f35 Mon Sep 17 00:00:00 2001 From: John Hill Date: Sun, 11 Aug 2019 22:06:55 -0400 Subject: [PATCH 1/2] Adding Debugging section to e2e doc First of many debugging, Troubleshooting, and FAQ tips --- awx/ui/test/e2e/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/awx/ui/test/e2e/README.md b/awx/ui/test/e2e/README.md index 5f935671ac..0e91b6f5a2 100644 --- a/awx/ui/test/e2e/README.md +++ b/awx/ui/test/e2e/README.md @@ -76,3 +76,9 @@ Once running, you can connect to nodes over vnc at `vnc://localhost:5900` and `v - On macOS, safari has a built-in vnc client and you should be able to use these urls directly. - On linux, you'll need to have your favorite vnc client ready (like `tigervnc`). Depending on the vnc client you use, you may need to visit `localhost:5900` and input the password `secret` separately. - For the chrome and firefox nodes, the development container instance of awx is mapped to hostname `awx` (https://awx:8043) + +#### Debugging / Troubleshooting / FAQ +- ```(node:11210) UnhandledPromiseRejectionWarning: Error: Request failed with status code 404``` + Possible that your `AWX_E2E_URL` is malformed +- ```2019-07-30 13:35:47.883 chromedriver[66032:1305791] pid(66032)/euid(501) is calling TIS/TSM in non-main thread environment, ERROR : This is NOT allowed. Please call TIS/TSM in main thread!!!``` + Specific to MacOS High Sierra. More here: https://github.com/processing/processing/issues/5462 From 121bc961088878f3a16b48f3ca051cf9c8ab3189 Mon Sep 17 00:00:00 2001 From: John Hill Date: Mon, 12 Aug 2019 15:46:39 -0400 Subject: [PATCH 2/2] Updating for the known MacOS High Sierra issue --- awx/ui/test/e2e/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/awx/ui/test/e2e/README.md b/awx/ui/test/e2e/README.md index 0e91b6f5a2..c22c280487 100644 --- a/awx/ui/test/e2e/README.md +++ b/awx/ui/test/e2e/README.md @@ -77,8 +77,6 @@ Once running, you can connect to nodes over vnc at `vnc://localhost:5900` and `v - On linux, you'll need to have your favorite vnc client ready (like `tigervnc`). Depending on the vnc client you use, you may need to visit `localhost:5900` and input the password `secret` separately. - For the chrome and firefox nodes, the development container instance of awx is mapped to hostname `awx` (https://awx:8043) -#### Debugging / Troubleshooting / FAQ -- ```(node:11210) UnhandledPromiseRejectionWarning: Error: Request failed with status code 404``` - Possible that your `AWX_E2E_URL` is malformed +#### Known Issues - ```2019-07-30 13:35:47.883 chromedriver[66032:1305791] pid(66032)/euid(501) is calling TIS/TSM in non-main thread environment, ERROR : This is NOT allowed. Please call TIS/TSM in main thread!!!``` Specific to MacOS High Sierra. More here: https://github.com/processing/processing/issues/5462