Mateusz Mikołajczyk
Mateusz Mikołajczyk
hmm could you possibly do that with a data migration? I.e. set the default currency to XYZ, then do a data migration and then set it to whatever you want...
i suppose it can be connected with the egg package You provide. The current source code needs python-gearman v. 2.x bindings, whether Your egg package has 1.5.x dependencies. I was...
ekhm, i believe it's quite opposite ;) The library now works with gearman api v. 2.x, not the 1.5.0. As i mentioned, the Task class was part of 1.x bindings...
@klepfish, please try the following commands: 1. pip uninstall gearman (this should uninstall gearman v. 1.x bindinds) 2. pip install gearman (this should install upstream version - 2.x) and see...
@ekid125 can you do pip freeze | grep gearman on your virtualenv ? I just started from a fresh virtualenv, installed django-gearman package and it pulled gearman v.2 as a...
well, the above code states that you have used the gearman client directly (without using django-gearman). Have you registered the jobs, as stated in the README ? (you have to...
no, those are two separate things. If you use 'just' gearman, then you won't have your django apps integrated. I just started a plain fresh project, installed everythiing and it...
While i don't feel competent enought to do this ( i don't know how should it be tested) i propose a compromise: A patch and a comment. Firstly, the patch...
I observed that when I manually edited the source of the generated client and changed line 4: ```typescript import { type Config, type ClientOptions as DefaultClientOptions, createClient, createConfig } from...
I had a very similar problem and the only way I managed to solve it involved replacing the context object which definetely seems hacky (but hey, it works!) so, first...