GithubHelp home page GithubHelp logo

Catch error on startup about machinery HOT 4 CLOSED

richardknop avatar richardknop commented on May 18, 2024
Catch error on startup

from machinery.

Comments (4)

randomandy avatar randomandy commented on May 18, 2024

Ok so I'm pretty sure it happens here:
broker.StartConsuming()
inside Launch()

from machinery.

randomandy avatar randomandy commented on May 18, 2024

This fixes it:

func (worker *Worker) Launch() error {
    cnf := worker.server.GetConfig()
    broker := worker.server.GetBroker()

    log.Printf("Launching a worker with the following settings:")
    log.Printf("- Broker: %s", cnf.Broker)
    log.Printf("- ResultBackend: %s", cnf.ResultBackend)
    log.Printf("- Exchange: %s", cnf.Exchange)
    log.Printf("- ExchangeType: %s", cnf.ExchangeType)
    log.Printf("- DefaultQueue: %s", cnf.DefaultQueue)
    log.Printf("- BindingKey: %s", cnf.BindingKey)

    errorsChan := make(chan error)

    go func() {
        for {
            retry, err := broker.StartConsuming(worker.ConsumerTag, worker)
            if err != nil {
                errorsChan <- err
            }

            if retry {
                log.Printf("Going to retry launching the worker. Error: %v", err)
            }
        }
    }()

    return <-errorsChan
}

from machinery.

RichardKnop avatar RichardKnop commented on May 18, 2024

@randomandy HI Andy. Thanks for catching this bug!

I'm quite busy at the moment so it might take me few days to take a look. If you want, create a PR with a fix and I will try to look at it and merge it this weekend if time allows.

from machinery.

randomandy avatar randomandy commented on May 18, 2024

@RichardKnop Hey Richard. Sure thing, happy to help. Fix is in #76

from machinery.

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.