Code Monkey home page Code Monkey logo

Comments (1)

malusiTowo avatar malusiTowo commented on June 3, 2024

I am also in need of a way to detect if my server is down.

I have a list of servers and I would like to connect to one that is up and running.

I have taken a similar approach to @odesey.

Here is what I have done so far.

const getServer = () => {
  const serverUrls = [
        "wss://..../websocket",
        "wss://...../websocket",
  ];
  let Server: SimpleDDP | null = null;
  let isServerHealthy = false;

  serverUrls.map(async endpoint => {
    try {
      if (!Server?.connected) {
        const opts = {
          endpoint,
          SocketConstructor: ws,
          reconnectInterval: 500,
          autoConnect: false,
          autoReconnect: false
        };
        Server = new SimpleDDP(opts, [simpleDDPLogin]);
        await Server.connect()
        isServerHealthy = await Server?.call("healthcheck");

      }
      console.log("url", endpoint, isServerHealthy, Server?.connected); // never called

    } catch (err) {
      console.log("Error connect server", err); // never called
    }
  });

  console.log("final status", Server?.connected); // called

  return Server;
};

Also, none of the event callbacks are called.

if the last endpoint in my array is valid, then the connection is established and everything works.

Do you have any ideas on how I could accomplish this?

Thanks.

from simpleddp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.