Giter VIP home page Giter VIP logo

Comments (4)

mastepanoski avatar mastepanoski commented on August 24, 2024

I update this making two changes. First util.debug is deprecated, so I changed it for "console.error" in the whole JS.
Next, I modified "var Socket = require('net').Socket;" with this change: "var net = require('net');" And I modified de connect function:

api.prototype.connect = function(connectHandler) {
    // While logging in, if an error occurs, we should kill the socket. This will keep node from not terminating due to lingering sockets.
    if (this.debug > 3) console.error('Connecting to ' + this.host);
    this.connecting = true;
    var self = this;
    this.socket = net.connect(this.port, this.host, connectHandler);
    // This will be called if there is no activity to the server.
    // If this occurs before the login is successful, it could be
    // that it is a connection timeout.
    this.socket.setTimeout(this.timeout * 1000, function(e) { // the socket timed out. According to the NodeJS api docs, right after this, it will be._closed.
      if (self.debug)
        console.error('Socket Timeout');
      if (!self.connected)
        self.emit('error', 'Timeout Connecting to host', self);
    });
    this.socket.setKeepAlive(true);
    this.socket.on('data', function(a) {
      self.read(a);
    });
    this.socket.on('end', function(a) {
      self.socket.destroy();
      if (self.connected)
        self.handler.close(true);
    });
    this.socket.on('error', function(a) {
      if (self.debug > 1)
        util.log('Connection error: ' + a);
      self.handler.emit('error', a, this.handler)
      self.handler.close(true);
    });
  }

from mikronode.

gtjoseph avatar gtjoseph commented on August 24, 2024

Do yo still get this error? Can you try with the 1.X.X branch?

from mikronode.

mastepanoski avatar mastepanoski commented on August 24, 2024

I tried with de release branch (v1.0.3), and it worked. I am using it in a REST API (It was implemented in HapiJS) to manage several connection features and a lot of queries (around of 600 users). The 1.x.x version is a great work.

from mikronode.

gtjoseph avatar gtjoseph commented on August 24, 2024

Thanks!

from mikronode.

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.