Giter Site home page Giter Site logo

Comments (7)

cressie176 avatar cressie176 commented on June 1, 2024

Hi @PaoloLaurenti can you share the code from rabbitMQ-producer.js:15:67 please?

from rascal.

cressie176 avatar cressie176 commented on June 1, 2024

On a separate note there's not point both checking and asserting the exchange

from rascal.

PaoloLaurenti avatar PaoloLaurenti commented on June 1, 2024

Hi @cressie176,
here's the rabbitMQ-producer.js file content:

function RabbitMQProducer (broker, publicationName) {
  this.broker = broker
  this.publicationName = publicationName

  this.publish = async function (message) {
    const publication = await this.broker.publish(this.publicationName, JSON.stringify(message))
    publication
      .on('success', messageId => {
        console.log('Message id was: ', messageId)
      })
      .on('error', (err, messageId) => {
        console.error('Error was: ', err)
      })
      .on('return', (messageId) => {
        console.warn('Message was returned: ', message.properties.messageId)
      })
  }
}

module.exports = RabbitMQProducer

The row 15 is

console.warn('Message was returned: ', message.properties.messageId)

The given broker object is created via this function:

async function setupRabbitMQBroker (rascalConfig, listener) {
  const broker = await rascal.BrokerAsPromised.create(rascal.withDefaultConfig(rascalConfig))
  broker.on('error', console.error)
  return broker
}

from rascal.

PaoloLaurenti avatar PaoloLaurenti commented on June 1, 2024

On a separate note there's not point both checking and asserting the exchange

Oh, OK, that's true. Thanks for the suggestion 👍

from rascal.

cressie176 avatar cressie176 commented on June 1, 2024

Here's your problem...

.on('return', (messageId) => {
  console.warn('Message was returned: ', message.properties.messageId)
})

from rascal.

PaoloLaurenti avatar PaoloLaurenti commented on June 1, 2024

Oh man... you're right...
I am really sorry. 🙏

Thank you very much

from rascal.

cressie176 avatar cressie176 commented on June 1, 2024

Don't worry. Happens to us all, especially when getting familiar with a new library.

from rascal.

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.