Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2026-09-15


### Fixed

- Restored official Release builds by keeping the RPC stall test override confined to Debug builds.

## 2026-09-09

### Fixed
Expand Down
5 changes: 4 additions & 1 deletion PiNative/PiConversationModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ final class PiConversationModel: ObservableObject {
return milliseconds * 1_000_000
}
private var shouldStallRPCForTesting: Bool {
shouldStallRPCOverrideForTesting ?? (ProcessInfo.processInfo.environment["PI_NATIVE_TEST_RPC_STALL"] == "1")
#if DEBUG
if let shouldStallRPCOverrideForTesting { return shouldStallRPCOverrideForTesting }
#endif
return ProcessInfo.processInfo.environment["PI_NATIVE_TEST_RPC_STALL"] == "1"
}
private var shouldFailRPCForTesting: Bool {
#if DEBUG
Expand Down
Loading