ginkgo icon indicating copy to clipboard operation
ginkgo copied to clipboard

Python service microframework

Results 12 ginkgo issues
Sort by recently updated
recently updated
newest added

Hi all, I am looking to upload my project 'ginkgo' to Pypi. I found this package is already there and occupy the name. However, I find this package hasn't been...

I have problem installing ginkgo. When I run setup.py following exception occurs. C:\git\ginkgo>python setup.py install Traceback (most recent call last): File "setup.py", line 5, in from ginkgo import **version** File...

If one of a service's greenlets calls self.stop(), that greenlet will be killed (as part of shutting down the gevent AsyncManger -- cf. gevent.py's do_stop() method) before self.stop() finishes execution....

``` import random from ginkgo.core import Service from ginkgo.runner import ControlInterface class SomeService(Service): def do_start(self): print random.randint(0,1) ``` ``` ginkgo test_managed_app2.conf.py [ruby-1.9.2-p320] Starting process with test_managed_app2.conf.py... 2012-07-27 15:15:44,946 INFO zmq_services:...

I've noticed several times that when you start a service with ginkoctl, it won't shut down or restart unless you send it SIGKILL. This seems to have been particularly the...

When starting a broken service with ginkgoctl, everything looks hunky dory: ``` # ginkgoctl ../collector.conf.py start || echo fail Starting process with ../collector.conf.py... ``` But in fact, an exception had...

It would be great for gingkoctl to provide a command that asked a service if it was ready. The reasoning behind this is for startup scripts that use `ginkgo start`....

runner

And remove bad examples

examples

During a recent code review, I mentioned that Ginkgo's current configuration file standard, where configuration files end in .conf.py, causes nose tests to break. Here's how you may reproduce it:...