Skip to content

Commit 13d28da

Browse files
committed
We still can't upgrade to protocol 23
1 parent f008b22 commit 13d28da

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/stellar-rpc.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,16 @@ jobs:
9898
strategy:
9999
matrix:
100100
os: [ ubuntu-20.04, ubuntu-22.04 ]
101-
protocol-version: [ 22, 23 ]
101+
protocol-version: [ 21, 22 ]
102102
runs-on: ${{ matrix.os }}
103103
env:
104104
STELLAR_RPC_INTEGRATION_TESTS_ENABLED: true
105105
STELLAR_RPC_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL: ${{ matrix.protocol-version }}
106106
STELLAR_RPC_INTEGRATION_TESTS_CAPTIVE_CORE_BIN: /usr/bin/stellar-core
107-
PROTOCOL_22_CORE_DEBIAN_PKG_VERSION: 22.1.0-2194.0241e79f7.focal
108-
PROTOCOL_22_CORE_DOCKER_IMG: stellar/stellar-core:22.1.0-2194.0241e79f7.focal
109-
PROTOCOL_23_CORE_DEBIAN_PKG_VERSION: 22.1.1-2251.ac9f21ac7.focal~do~not~use~in~prd
110-
PROTOCOL_23_CORE_DOCKER_IMG: stellar/unsafe-stellar-core:22.1.1-2251.ac9f21ac7.focal-do-not-use-in-prd
107+
PROTOCOL_21_CORE_DEBIAN_PKG_VERSION: 22.1.0-2194.0241e79f7.focal
108+
PROTOCOL_21_CORE_DOCKER_IMG: stellar/stellar-core:22.1.0-2194.0241e79f7.focal
109+
PROTOCOL_22_CORE_DEBIAN_PKG_VERSION: 22.1.1-2251.ac9f21ac7.focal~do~not~use~in~prd
110+
PROTOCOL_22_CORE_DOCKER_IMG: stellar/unsafe-stellar-core:22.1.1-2251.ac9f21ac7.focal-do-not-use-in-prd
111111

112112
steps:
113113
- uses: actions/checkout@v4

cmd/stellar-rpc/internal/integrationtest/infrastructure/test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ func NewTest(t *testing.T, cfg *TestConfig) *Test {
149149
i.enableCoreHTTPQueryServer = cfg.EnableCoreHTTPQueryServer
150150
}
151151

152-
if i.enableCoreHTTPQueryServer && GetCoreMaxSupportedProtocol() < 23 {
153-
t.Skip("Core's HTTP Query server is only available from protocol 23")
152+
if i.enableCoreHTTPQueryServer && GetCoreMaxSupportedProtocol() < 22 {
153+
t.Skip("Core's HTTP Query server is only available from protocol 22")
154154
}
155155

156156
if i.sqlitePath == "" {

0 commit comments

Comments
 (0)