Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BetterStackHQ/hyper_ruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: alistair/avoid-overallocation
Choose a base ref
...
head repository: BetterStackHQ/hyper_ruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 6 files changed
  • 3 contributors

Commits on Feb 25, 2026

  1. Merge pull request #4 from BetterStackHQ/alistair/avoid-overallocation

    Don't over-allocate for request bodies
    alistairjevans authored Feb 25, 2026
    Configuration menu
    Copy the full SHA
    de0cdf9 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2026

  1. Configuration menu
    Copy the full SHA
    08cee60 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5 from BetterStackHQ/alistair/handle-rst-stream-c…

    …ancel
    
    Handle hyper providing us incomplete requests
    alistairjevans authored Apr 21, 2026
    Configuration menu
    Copy the full SHA
    8920a0a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2026

  1. Configuration menu
    Copy the full SHA
    ac788ab View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2026

  1. SH-1002 [CI] Update GitHub Actions versions (#7)

    Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
    PetrHeinz and claude authored Jul 17, 2026
    Configuration menu
    Copy the full SHA
    1a8bc56 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2026

  1. Make unix socket takeover atomic and guard cleanup by inode (#8)

    After a full docker restart, a replacement ingester can bind its unix
    socket while the old container is still draining; the old server's
    stop() then unlinked the path by name, deleting the new server's socket.
    The new server keeps listening on an unlinked inode and never recovers
    (BetterStackHQ Linear T-8292).
    
    - start() now binds to a unique temp path and atomically renames it over
      the target, so the path always points at a live socket and takeover of
      a still-bound path is a single step.
    - stop() records the bound socket file's (dev, ino) and only unlinks the
      path if it still matches, so an older generation never removes a newer
      generation's socket.
    
    Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
    alistairjevans and claude authored Aug 14, 2026
    Configuration menu
    Copy the full SHA
    13390c8 View commit details
    Browse the repository at this point in the history
Loading