This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-stormcrawler.git


The following commit(s) were added to refs/heads/main by this push:
     new 80ced135 #1209 fix for emulation error in tests run on silicon (#1210)
80ced135 is described below

commit 80ced135cbf097cf4428fcc3ae4baea59bbf00fa
Author: Josh Fischer <[email protected]>
AuthorDate: Sat May 4 21:23:31 2024 -0500

    #1209 fix for emulation error in tests run on silicon (#1210)
    
    * #1209 fix for emulation error in tests run on silicon
    
    * lock down dep
---
 README.md                                                             | 4 ++++
 .../java/org/apache/stormcrawler/protocol/selenium/ProtocolTest.java  | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index bc3cb8f6..15ad8892 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,10 @@ Please format your code before submitting a PR with
 ```
 mvn git-code-format:format-code -Dgcf.globPattern=**/*
 ```
+If you are running commands in a zsh shell, you may need to execute:
+```shell
+mvn git-code-format:format-code -Dgcf.globPattern="**/*"
+```
 
 ## Thanks
 
diff --git 
a/core/src/test/java/org/apache/stormcrawler/protocol/selenium/ProtocolTest.java
 
b/core/src/test/java/org/apache/stormcrawler/protocol/selenium/ProtocolTest.java
index 88416ec2..45ea0382 100644
--- 
a/core/src/test/java/org/apache/stormcrawler/protocol/selenium/ProtocolTest.java
+++ 
b/core/src/test/java/org/apache/stormcrawler/protocol/selenium/ProtocolTest.java
@@ -51,7 +51,8 @@ public class ProtocolTest extends AbstractProtocolTest {
     private static final Logger LOG = 
LoggerFactory.getLogger(ProtocolTest.class);
 
     private static final DockerImageName SELENIUM_IMAGE =
-            DockerImageName.parse("selenium/standalone-chrome:120.0");
+            DockerImageName.parse("seleniarm/standalone-chromium:124.0")
+                    .asCompatibleSubstituteFor("selenium/standalone-chrome");
 
     @Rule
     public BrowserWebDriverContainer<?> chrome =

Reply via email to