Mikko Ohtamaa
Mikko Ohtamaa
> I think it's better to have a completely empty project because it removes the step of removing everything that you are not going to use. The only time that...
I rewrote the loop to not to do `fork()` within the loop and the resource leakage is gone. However the downside for this is that as I cannot rely `fork()`...
Thank you! Works smoothly.
I think the solution is to check interface matching when resolving underlying method for JavaMultipleMethod. For the given object argument check if the target argument is interface. If the object...
In theory, you can achieve the functionality with `logging.setLoggerClass`. However this solution is somewhat inelegant. Here we pass an extra field `application`: ```python logger = logging.getLogger() handler = logstash.UDPLogstashHandler(logstash_server, 5959,...
Here is an example how Warehouse does it: https://github.com/pypa/warehouse/blob/0f168c8da2e982155e0c3e90d1c5856fffce0d4f/warehouse/celery.py I was looking for to integrate this to pyramid_celery, though I am still a bit Celery noob.
Here is another implementation: https://websauna.org/narrative/misc/task.html
Put a Python pdb breakpoint to the line before it raise ValueError. Inspect the content of _s_ variable to see what it is trying to decode. https://www.youtube.com/watch?v=bZZTeKPRSLQ
Ah, my guess is that Package Control installation is broken for SublimePythonTidy, because it referes to external Git repo. I suggest either to fix or disable Package Control installation method.
It should also make sense to check call() return value so we can detect the condition when use has no _git_ command installed and we can show a message telling...