Git Product home page Git Product logo

Comments (4)

cdrx avatar cdrx commented on July 4, 2024 1

The args always has to be an iterable.

In Python, a brackets don't make an array, you need a trailing comma; eg:

client.queue('some_job', args=(single_argument, ), queue='some_job')

if you use the list syntax [] rather than tuple syntax () then you don't need the trailing comma:

client.queue('some_job', args=[single_argument], queue='some_job')

Because () isn't a tuple, then ([single_argument]) and [single_argument] are equal.

from faktory_worker_python.

Schniz avatar Schniz commented on July 4, 2024

what about client.queue('some_job', args={"key": "value"}, queue='some_job')?
I believe it won't be interpreted as kwargs, therefore you we shouldn't accept any iterable. Union(Set, List, Tuple) sounds like a good coverage. What do you think?

from faktory_worker_python.

cdrx avatar cdrx commented on July 4, 2024

Faktory wont accept a dict for job args, though it would be nice if it did. It needs to be something that can be deserialised to a slice in Go.

Python's json won't serialise a set type, so we should probably pass args through list(..) to exhaust anything thats iterable before sending to faktory.

That does mean that args={"key": "value"} will be sent to faktory as args=("key") though.

from faktory_worker_python.

Schniz avatar Schniz commented on July 4, 2024

So the only reason to not raise an error if something other than list or tuple is to support generators?
I believe you can test typing.Iterator to catch generators. IMO, any other types, including dict should raise an error

from faktory_worker_python.

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.