| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |\
| |
| | |
Change six requirement to >=1.14.0
|
| |/
|
|
|
|
|
|
|
|
|
| |
What?
=====
I changed six==1.14.0 to six>=1.14,<2
Why?
=====
Six 1.15.0 is out now, and we're getting version conflicts because pip
is installing 1.15.0 for other stuff but requiring 1.14.0 for eventmq.
|
| | |
|
| |\
| |
| | |
fix test typo
|
| |/ |
|
| |\
| |
| | |
Bump psutil from 5.0.0 to 5.6.6
|
| | |\
| |/
|/| |
|
| |\ \
| | |
| | | |
Feature/metrics updates
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
WHAT:
* Update test to account for new get_status() results
* Resolve flappy test based on time.
WHY:
They were broken, and needed fixing for Teem and Lindley White's
changes.
|
| |/ / |
|
| |/
|
|
|
|
|
|
| |
Bumps [psutil](https://github.com/giampaolo/psutil) from 5.0.0 to 5.6.6.
- [Release notes](https://github.com/giampaolo/psutil/releases)
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](https://github.com/giampaolo/psutil/compare/release-5.0.0...release-5.6.6)
Signed-off-by: dependabot[bot] <support@github.com>
|
| |\
| |
| | |
Fix python 23 compatibility issues
|
| | |
| |
| |
| | |
- fix params for `zsocket.send_multipart()`
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
| |
- version bump 0.3.12
- upgrade `six, flake8` libs
- fix `flake8` check issues
- add import of `from __future__ import print_function`
- fix params for `zsocket.setsockopt()` and `hashlib.sha1()` methods
- use `range, map` functions from `six`
- wrap result of `map, dict.keys(), dict.values()` functions in a list
- fix `EMQdeque.__unicode__()` method for py2 support
- fix using of exception messages
- update integer division for support the same behavior in py3 as is in py2
- refactor using of `filter` function
|
| |\
| |
| | |
Add Python 3.7 support
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
| |\
| |
| | |
Fix CircleCI tests
|
| |/
|
|
|
|
|
|
|
|
|
| |
- updates circleci config to better support multiple python versions
- remove unused dateutil library
- remove unused nose library for testing
- fixes unicode() function for py3
- remove metadata claiming support for py26 and py34
- remove unfinished test (causes problems with py2's unittest
discovery)
- fix reload() function for py3 support
|
| |\
| |
| | |
Add Python 2/3 Compatibility with configparser
|
| | | |
|
| |/ |
|
| | |
|
| | |
|
| |\
| |
| | |
Scheduler: adds optional support for redis and specifying redis client
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- allow optional support for running the scheduler without a redis
backend for persistent schedule storage. The default is to exit on
startup error. The user can set `redis_startup_error_hard_kill` to
false if they really want to run the scheduler with no backend db.
- allow users the ability to specify a redis client class. this will let
them use redis-cluster if they wish. They can install the appropriate
module and define `redis_client_class` (and if necessary class keyword
arguments via `redis_client_class_kwargs`).
|
| |/
|
|
|
|
|
| |
- Add's support for JSON dictionaries to the config file. This will
allow users to define mappings for certain settings. Initially this
will be used for defining additional class parameters for a custom
Redis class.
|
| |\
| |
| | |
Upgrade to circleci 2.0
|
| | | |
|
| |\ \
| | |
| | | |
Fix bug not allowing env vars to be used without a config file
|
| |/ / |
|
| |\ \
| |/
|/| |
Allow configuration options to be specified as environment variables
|
| |/ |
|
| |\
| |
| | |
Add an option to define max sockets per context
|
| |/ |
|
| |\
| |
| | |
Add job setup and cleanup functions
|
| | | |
|
| | | |
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds 2 new config options: `job_entry_func` and `job_exit_func`.
These functions are executed before and after every single job
execution. The rationale behind this is before and after each request
Django cleans up stale database connections, so Django jobs need some
way of running this same setup/cleanup functions.
https://github.com/django/django/blob/master/django/db/__init__.py#L57
```
# Register an event to reset transaction state and close connections past
# their lifetime.
def close_old_connections(**kwargs):
for conn in connections.all():
conn.close_if_unusable_or_obsolete()
signals.request_started.connect(close_old_connections)
signals.request_finished.connect(close_old_connections)
```
fixes: #41
|
| | |
|
| |\
| |
| | |
Remove tabs, and add conf file
|
| |/ |
|
| | |
|
| |\
| |
| | |
Add arguments to the scheduler and router
|
| | |\ |
|
| | |/
|/| |
|