Skip to content

Commit

Permalink
Merge pull request #452 from grycap/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
micafer authored Sep 22, 2023
2 parents 57eceed + 476df3f commit d7a683b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,12 +464,12 @@ def showinfrastructures():
raise Exception(response.text)
radl_json = response.json()["radl"]
except Exception as ex:
app.logger.exception("Error getting vm info: %s" % ex, "error")
app.logger.exception("Error getting vm info: %s" % ex)
radl_json = []
try:
creds = cred.get_creds(get_cred_id())
except Exception as ex:
app.logger.exception("Error getting user credentials: %s" % ex, "error")
app.logger.exception("Error getting user credentials: %s" % ex)
creds = []
site_info = utils.get_site_info_from_radl(radl_json, creds)
if site_info:
Expand Down
2 changes: 1 addition & 1 deletion app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Settings:
def __init__(self, config):
"""Creator function."""
self.version = "2.5.2"
self.version = "2.5.3"
self.toscaDir = config.get('TOSCA_TEMPLATES_DIR', '') + "/"
self.toscaParamsDir = config.get('TOSCA_PARAMETERS_DIR', '') + "/"
self.imUrl = config['IM_URL']
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"@type": "SoftwareSourceCode",
"identifier": "im-dashboard",
"name": "Infrastructure Manager Dashboard",
"version": "2.5.1",
"version": "2.5.3",
"description": "Infrastructure Manager - Simple Graphical UI",
"license": "GNU General Public License v3.0",
"author": [
Expand Down

0 comments on commit d7a683b

Please sign in to comment.