Skip to content

docs(okhttp): add rollbar-java to installation snippet

1d7dab4
Select commit
Loading
Failed to load commit list.
Merged

[Feat] [SDK-399] Okhttp interceptor #367

docs(okhttp): add rollbar-java to installation snippet
1d7dab4
Select commit
Loading
Failed to load commit list.
Claude / Claude Code Review completed May 1, 2026 in 8m 38s

Code review found 3 potential issues

Found 5 candidates, confirmed 3. See review comments for details.

Details

Severity Count
🔴 Important 0
🟡 Nit 2
🟣 Pre-existing 0
Severity File:Line Issue
🟡 Nit rollbar-okhttp/README.md:80-94 Default sanitizer docs understate what is stripped
🟡 Nit settings.gradle.kts:41 settings.gradle.kts: rollbar-okhttp include missing leading colon

Annotations

Check warning on line 94 in rollbar-okhttp/README.md

See this annotation in the file changed.

@claude claude / Claude Code Review

Default sanitizer docs understate what is stripped

The default URL sanitizer at `RollbarOkHttpInterceptor.java:20-21` strips four URL components — username, password, query, AND fragment — but the docs only mention query parameters in three places: README.md:82 ("strips query parameters by default"), the inline comment at README.md:40, and the Javadoc on `NetworkTelemetryRecorder.recordNetworkEvent` at NetworkTelemetryRecorder.java:14. Recent commit ce27e7b broadened the stripping but the docs were not updated, so readers think userinfo and frag

Check warning on line 41 in settings.gradle.kts

See this annotation in the file changed.

@claude claude / Claude Code Review

settings.gradle.kts: rollbar-okhttp include missing leading colon

settings.gradle.kts:41 lists the new module as `"rollbar-okhttp"` (no leading colon) while every other entry in the same `include()` block — and the conditional include for the Android modules — uses the `":rollbar-..."` / `":examples:..."` form. Both forms resolve to the same Gradle project path, so the build is unaffected; this is a one-character style fix to match the surrounding 13+ entries.