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

Commit

Permalink
Merge branch 'dev' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Oct 9, 2023
2 parents 54eb262 + 2fd9e61 commit c4a5aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.5-bookworm
FROM python:3.11.6-bookworm
RUN apt-get update -y
RUN apt-get install -y build-essential
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion VirtualMachineService/VirtualMachineHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ def create_backend(self, elixir_id, user_key_url, template, upstream_url):
return {}
self.LOG.info(f"Backend created {data}")
return Backend(
id=data["id"],
id=int(data["id"]),
owner=data["owner"],
location_url=data["location_url"],
template=data["template"],
Expand Down

0 comments on commit c4a5aa8

Please sign in to comment.