"test/vscode:/vscode.git/clone" did not exist on "aca5591c7f5b5ada2218785cec6dc3ebecb02a9a"
  1. 17 May, 2024 2 commits
  2. 11 May, 2024 1 commit
    • Jonas Kaufmann's avatar
      orchestration/experiment_output: fix key order in output JSON · 135e7118
      Jonas Kaufmann authored
      This removes automatically sorting the keys that I introduced in #97, which means that instead, attributes are serialized in the order they are defined in. With this change, simple information like start and end time are readable at a glance directly at the top of the JSON file.
      135e7118
  3. 08 May, 2024 33 commits
  4. 07 May, 2024 2 commits
  5. 06 May, 2024 1 commit
  6. 13 Jan, 2024 1 commit
    • Jonas Kaufmann's avatar
      orchestration: change asyncio.wait() to asyncio.gather() · ec3ba41e
      Jonas Kaufmann authored
      This change is mostly about the default semantics of asyncio.wait(). It
      doesn't forward any exceptions that are raised by any of the coroutines
      it waits for. This effectively causes exceptions to be swallowed. In
      contrast, asyncio.gather() forwards exceptions to its calling coroutine.
      ec3ba41e