Skip to content

Commit

Permalink
Merge branch 'master' of github.com:IdentityPython/pyFF
Browse files Browse the repository at this point in the history
  • Loading branch information
leifj committed Nov 21, 2019
2 parents 13dd054 + 86ae841 commit 1c7ecb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ python SAML metadata aggregator
This is a SAML metadata aggregator written in python. It is based on the model
for metadata exchange by Ian Young: http://iay.org.uk/blog/2008/10/metadata_interc.html

* http://github.com/IdentityPython/pyFF
* http://pypi.python.org/pypi/pyFF
* http://packages.python.org/pyFF

Features
========

Expand All @@ -48,3 +44,8 @@ Dependencies

* pyXMLSecurity
* PyKCS11 (optional)

More information
================

Project homepage: https://pyff.io/
2 changes: 1 addition & 1 deletion src/pyff/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ def non_blocking_lock(lock=threading.Lock(), exception_class=ResourceException,

def make_default_scheduler():
if config.scheduler_job_store == 'redis':
jobstore = RedisJobStore()
jobstore = RedisJobStore(host=config.redis_host, port=config.redis_port)
elif config.scheduler_job_store == 'memory':
jobstore = MemoryJobStore()
else:
Expand Down

0 comments on commit 1c7ecb9

Please sign in to comment.