mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Merge pull request #59 from ComputerScienceHouse/package_updates
Updating csh-ldap and rq
This commit is contained in:
commit
1ff749431b
4 changed files with 16 additions and 9 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -5,3 +5,9 @@ rrd/*
|
||||||
*.pyc
|
*.pyc
|
||||||
*_key
|
*_key
|
||||||
Pipfile*
|
Pipfile*
|
||||||
|
|
||||||
|
# venv parts
|
||||||
|
bin
|
||||||
|
pyvenv.cfg
|
||||||
|
site-packages
|
||||||
|
venv
|
||||||
|
|
|
@ -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')
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue