Skip to content

Commit

Permalink
Fix: Return to original runtime.
Browse files Browse the repository at this point in the history
  • Loading branch information
nesitor committed Oct 10, 2023
1 parent fb34e40 commit 9abfd5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-on-droplets-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- alias: "runtime-6770" # Old runtime, using Debian 11
item_hash: "67705389842a0a1b95eaa408b009741027964edc805997475e95c505d642edd8"
query_params: "?retro-compatibility=true"
- alias: "runtime-3e39" # New runtime, using Debian 12
item_hash: "3e39ead937d6490647b1fb28db7d9ae4522af8da4349a210c06591cc53d6199b"
- alias: "runtime-3fc0" # New runtime, using Debian 12
item_hash: "3fc0aa9569da840c43e7bd2033c3c580abb46b007527d6d20f2d4e98e867f7af"
query_params: ""

steps:
Expand Down
4 changes: 3 additions & 1 deletion vm_supervisor/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ async def index(request: web.Request):


async def status_check_fastapi(request: web.Request):
retro_compatibility: bool = request.rel_url.query.get('retro-compatibility', 'false') == 'true'
retro_compatibility: bool = (
request.rel_url.query.get("retro-compatibility", "false") == "true"
)

async with aiohttp.ClientSession() as session:
result = {
Expand Down

0 comments on commit 9abfd5c

Please sign in to comment.