Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #474 from deNBI/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
dweinholz authored Sep 30, 2020
2 parents 9f1f846 + a3e7379 commit f12a103
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
CLOUD_CLIENT_TAG=0.1.0-beta.0.8.17
CLOUD_CLIENT_TAG=0.1.0-beta.0.13.0
ELASTIC_USER=elasticboi
FILEBEAT_TAG=7.1.0
ELASTIC_URL=https://portal-dev.denbi.de:443
BIBIGRID_TAG=dev-30-9
CLIENT_PORT=9090


OS_AUTH_URL=https://openstack.cebitec.uni-bielefeld.de:5000/v3/
OS_PROJECT_ID=3e552e42945c40aab02af3be9bc67a23
Expand Down
4 changes: 2 additions & 2 deletions .env.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CLOUD_CLIENT_TAG=
BIBIGRID_TAG=
CLOUD_CLIENT_TAG=0.1.0-beta.0.13.0
BIBIGRID_TAG=dev-30-9
CLIENT_PORT=
FORC_API_KEY=
ELASTIC_USER=
Expand Down
10 changes: 8 additions & 2 deletions VirtualMachineService/VirtualMachineHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1888,8 +1888,14 @@ def get_cluster_status(self, cluster_id):
response = req.get(
url=request_url, json=body, headers=headers, verify=self.PRODUCTION
)
LOG.info("Cluster {} status: {} ".format(cluster_id, response.content))
return response.json(strict=False)
#LOG.info("Cluster {} status: {} ".format(cluster_id, response.content))
json_resp=response.json(strict=False)
LOG.info(json_resp)
json_resp['log']=str(json_resp['log'])
json_resp['msg']=str(json_resp['msg'])


return json_resp

def bibigrid_available(self):
LOG.info("Checking if Bibigrid is available")
Expand Down

0 comments on commit f12a103

Please sign in to comment.