Merge pull request #59 from ComputerScienceHouse/package_updates

Updating csh-ldap and rq
This commit is contained in:
Devin Matte 2020-12-21 13:27:26 -05:00 committed by GitHub
commit 1ff749431b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 9 deletions

6
.gitignore vendored
View file

@ -5,3 +5,9 @@ rrd/*
*.pyc *.pyc
*_key *_key
Pipfile* Pipfile*
# venv parts
bin
pyvenv.cfg
site-packages
venv

View file

@ -64,5 +64,6 @@ WEBSOCKIFY_TARGET_FILE = environ.get('PROXSTAR_WEBSOCKIFY_TARGET_FILE',
# SENTRY # SENTRY
# If you set the sentry dsn locally, make sure you use the local-dev or some # If you set the sentry dsn locally, make sure you use the local-dev or some
# other local environment, so we can separate local errors from production # other local environment, so we can separate local errors from production
SENTRY_DSN = environ.get("PROXSTAR_SENTRY_DSN", "") SENTRY_DSN = environ.get('PROXSTAR_SENTRY_DSN', '')
SENTRY_ENV = environ.get("PROXSTAR_SENTRY_ENV", "local-dev") RQ_SENTRY_DSN = environ.get('PROXSTAR_SENTRY_DSN', '')
SENTRY_ENV = environ.get('PROXSTAR_SENTRY_ENV', 'local-dev')

View file

@ -450,7 +450,7 @@ def create():
memory, memory,
disk, disk,
iso, iso,
timeout=300) job_timeout=300)
else: else:
q.enqueue( q.enqueue(
setup_template_task, setup_template_task,
@ -460,7 +460,7 @@ def create():
ssh_key, ssh_key,
cores, cores,
memory, memory,
timeout=600) job_timeout=600)
return '', 200 return '', 200
return '', 200 return '', 200
return None return None

View file

@ -1,4 +1,4 @@
csh-ldap==2.1.1 csh-ldap~=2.2.0
flask==1.0.2 flask==1.0.2
flask-pyoidc==1.3.0 flask-pyoidc==1.3.0
gunicorn==19.9.0 gunicorn==19.9.0
@ -7,11 +7,11 @@ proxmoxer==1.0.3
psutil==5.6.6 psutil==5.6.6
psycopg2-binary==2.8.6 psycopg2-binary==2.8.6
python-dateutil==2.7.3 python-dateutil==2.7.3
redis==2.10.6 redis==3.5.3
requests==2.24.0 requests==2.24.0
rq==0.12.0 rq==1.1.0
rq-dashboard==0.4.0 rq-dashboard==0.6.1
rq-scheduler==0.8.3 rq-scheduler==0.10.0
sqlalchemy==1.3.20 sqlalchemy==1.3.20
sshtunnel==0.2.2 sshtunnel==0.2.2
tenacity==5.0.2 tenacity==5.0.2