Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Adding initial version of Registry and fixing grid console for Firefo…
Browse files Browse the repository at this point in the history
…x. (#358)

* Adding initial version of Registry.

* Refreshing every 20 minutes since "-1" in FF does not work, fixes #356
  • Loading branch information
diemol committed Dec 10, 2017
1 parent ce22065 commit 3f759af
Show file tree
Hide file tree
Showing 14 changed files with 457 additions and 24 deletions.
1 change: 1 addition & 0 deletions scripts/zalenium.sh
Expand Up @@ -428,6 +428,7 @@ StartUp()
-servlet de.zalando.ep.zalenium.servlet.ZaleniumResourceServlet \
-servlet de.zalando.ep.zalenium.dashboard.DashboardCleanupServlet \
-servlet de.zalando.ep.zalenium.servlet.VncAuthenticationServlet \
-registry de.zalando.ep.zalenium.registry.ZaleniumRegistry \
${DEBUG_FLAG} &

echo $! > ${PID_PATH_SELENIUM}
Expand Down
Expand Up @@ -9,7 +9,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.openqa.grid.internal.GridRegistry;
import de.zalando.ep.zalenium.registry.ZaleniumRegistry;
import org.openqa.grid.web.servlet.RegistryBasedServlet;
import com.google.common.io.ByteStreams;

Expand All @@ -26,7 +26,7 @@ public DashboardCleanupServlet() {
this(null);
}

public DashboardCleanupServlet(GridRegistry registry) {
public DashboardCleanupServlet(ZaleniumRegistry registry) {
super(registry);
}

Expand Down
Expand Up @@ -4,7 +4,6 @@
import de.zalando.ep.zalenium.container.ContainerClient;
import de.zalando.ep.zalenium.container.ContainerCreationStatus;
import de.zalando.ep.zalenium.container.ContainerFactory;
import de.zalando.ep.zalenium.container.kubernetes.KubernetesContainerClient;
import de.zalando.ep.zalenium.matcher.DockerSeleniumCapabilityMatcher;
import de.zalando.ep.zalenium.util.Environment;
import de.zalando.ep.zalenium.util.GoogleAnalyticsApi;
Expand Down

0 comments on commit 3f759af

Please sign in to comment.