1. 20 Nov, 2024 11 commits
  2. 19 Nov, 2024 5 commits
  3. 18 Nov, 2024 5 commits
  4. 17 Nov, 2024 5 commits
  5. 16 Nov, 2024 1 commit
  6. 15 Nov, 2024 3 commits
    • Jesse Gross's avatar
      runner.go: Propagate panics back to the user. · d875e99e
      Jesse Gross authored
      This is a partial revert of 8a35bb92
      "runner.go: Increase survivability of main processing loop", removing
      the panic handler.
      
      Although we want to avoid errors taking down the runner, we also
      should make the user aware of problems when they happen. In the
      future, we can restructure things so both parts are true.
      d875e99e
    • Jesse Gross's avatar
      runner.go: Increase survivability of main processing loop · 8a35bb92
      Jesse Gross authored
      Currently, if an error occurs during the prep stages (such as
      tokenizing) of a single request, it will only affect that request.
      However, if an error happens during decoding, it can take down the
      entire runner.
      
      Instead, it's better to drop the tokens that triggered the error and try to
      keep going. However, we also need to stop when we run out of tokens,
      otherwise, this just causes an infinite loop. This is likely the cause
      of at least some of the hanging issues that have been reported.
      
      Bug #7573
      8a35bb92
    • Daniel Hiltgen's avatar
      build: fix arm container image (#7674) · a0ea067b
      Daniel Hiltgen authored
      Fix a rebase glitch from the old C++ runner build model
      a0ea067b
  7. 14 Nov, 2024 7 commits
  8. 12 Nov, 2024 3 commits