Selenium Plugin: Timeout too small

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      The Selenium Plugin tests the Reachablility of a client machine using the Method
      hudson.model.Computer#getHostname().

      While the algorithm is pretty cool, in our network setup (virtual windows server
      on a xen cluster) it fails because of a too small timeout in the
      InetAddress.isReachable() - Method. Due to that, the Selenium Plugin does not
      start any Remote Controls quitting with "Unable to determine the host name.
      Skipping Selenium execution."

      An increased (I'd suggest 3000ms) value in the InetAddress.isReachable() Method
      makes the plugin work in our network setup.

      hudson.model.Computer#getHostname()

      Line 562 (old): if(!ia.isReachable(500)) {
      Line 562 (new): if(!ia.isReachable(3000)) {

      Could you increase the timeout?

            Assignee:
            Unassigned
            Reporter:
            tboeghk
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: