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: e2b-dev/runtime
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: e2b-dev/runtime
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fix/orch-list-current-network
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Aug 1, 2026

  1. fix(orchestrator): report the current network egress when listing san…

    …dboxes
    
    The gRPC sandbox list handed out APIStoredConfig verbatim. That is a
    create-time snapshot: the network update RPC publishes egress changes to
    sbx.Config and never touches it, so listing a node reported the network
    settings the sandbox was created with.
    
    The API re-syncs its store from this list on redeploy, so an updated
    sandbox silently reverted to its create-time egress, the detail endpoint
    served stale data, and the next pause/resume rebuilt the sandbox from it.
    
    Overlay the live egress onto a clone of the stored config, and only when
    the two diverge, so the shared stored config is never mutated. A stale
    allow_internet_access=false is corrected alongside it: the API folds that
    flag into a deny-all CIDR on every resume, which would otherwise undo an
    update that re-enabled the internet. Unset stays unset.
    tomassrnka committed Aug 1, 2026
    Configuration menu
    Copy the full SHA
    bc6ea1a View commit details
    Browse the repository at this point in the history
Loading