This repository was archived by the owner on Feb 16, 2026. It is now read-only.
Conversation
Greptile OverviewGreptile SummaryRenamed the environment variable from
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Test as Test Suite
participant Config as s2_config()
participant Env as Environment Variables
participant S2Config as S2Config Builder
Test->>Config: Call s2_config(compression)
Config->>Env: Check S2_ACCESS_TOKEN
Env-->>Config: Return access token
Config->>S2Config: Create S2Config::new(token)
Config->>Env: Check S2_ACCOUNT_ENDPOINT & S2_BASIN_ENDPOINT
alt Endpoints set
Env-->>Config: Return endpoint values
Config->>S2Config: with_endpoints()
end
Config->>Env: Check S2_SSL_NO_VERIFY
alt SSL verification disabled
Env-->>Config: Variable is set
Config->>S2Config: with_insecure_skip_cert_verification(true)
end
Config->>S2Config: with_compression(compression)
S2Config-->>Config: Return configured S2Config
Config-->>Test: Return S2Config
|
shikhar
approved these changes
Jan 27, 2026
Merged
shikhar
pushed a commit
that referenced
this pull request
Jan 27, 2026
## 🤖 New release * `s2-sdk`: 0.23.2 -> 0.23.3 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.23.3] - 2026-01-27 ### Bug Fixes - Explicitly enable git tagging and releases in release-plz ([#276](#276)) - Rename S2_INSECURE to S2_SSL_NO_VERIFY ([#278](#278)) <!-- generated by git-cliff --> </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
... for the env var to disable SSL verification during tests.
Renamed to match s2-streamstore/s2-cli#210