Skip to content

Commit ad4f235

Browse files
[ci] Merge branch 'main' of github.com:hyperledger-labs/splice into julien/2472-force-acs-pruning-svs-30d
2 parents e2a24ed + 5cc1aba commit ad4f235

File tree

9 files changed

+14
-3
lines changed

9 files changed

+14
-3
lines changed

LATEST_RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.1

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.1
1+
0.5.2

apps/app/src/test/resources/include/mediators.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ _mediator_template {
1515
time-tracker.min-observation-duration = 10s
1616
sequencer-client {
1717
use-new-connection-pool = false
18+
enable-amplification-improvements = true
1819
}
1920
topology.validate-initial-topology-snapshot = false
2021
}

apps/app/src/test/resources/include/participants.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ _participant_template {
4545
# Use a higher number of in flight batches to increase throughput
4646
maximum-in-flight-event-batches = 50
4747
use-new-connection-pool = false
48+
enable-amplification-improvements = true
4849
}
4950

5051
# TODO(DACH-NY/canton-network-node#8331) Tune cache sizes

cluster/images/canton-mediator/app.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ canton {
2222
sequencer-client {
2323
acknowledgement-interval = 10m
2424
use-new-connection-pool = false
25+
enable-amplification-improvements = true
2526
}
2627

2728
storage = ${_storage}

cluster/images/canton-participant/app.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ canton {
3030
# Use a higher number of in flight batches to increase throughput
3131
maximum-in-flight-event-batches = 50
3232
use-new-connection-pool = false
33+
enable-amplification-improvements = true
3334
}
3435

3536
monitoring.grpc-health-server {

cluster/images/multi-participant/pre-bootstrap.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ canton.participants.participant_$index = {
3030
# Use a higher number of in flight batches to increase throughput
3131
maximum-in-flight-event-batches = 50
3232
use-new-connection-pool = false
33+
enable-amplification-improvements = true
3334
}
3435
3536
monitoring.grpc-health-server {

cluster/pulumi/common/src/auth0/auth0.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export function getAuth0ClusterConfig(): Output<Auth0ClusterConfig> {
307307
return infraOutput.apply(output => {
308308
if (
309309
(output['cantonNetwork'] && output['cantonNetwork']['appToClientId'] === undefined) ||
310-
(output['mainNet'] && output['mainNet']['appToClientId'] === undefined)
310+
(output['mainnet'] && output['mainnet']['appToClientId'] === undefined)
311311
) {
312312
// Infra is already on the new version, and its output is correctly typed
313313
return output as Auth0ClusterConfig;

docs/src/release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ Upcoming
1515

1616
An example value would be: ``ADDITIONAL_CONFIG_PARTICIPANT_PRUNING=canton.validator-apps.validator_backend.participant-pruning-schedule {cron: "0 /10 * * * ?", max-duration: "5m", retention: "10h"}``
1717

18+
- Sequencer connections
19+
20+
- Improve retries for sending sequencer submissions when a sequencer rejects the request with an overloaded error code by retrying immediately on another node.
21+
- The network timeout for the connection was lowered to 15 seconds to detect failures faster.
22+
23+
1824
0.5.1
1925
-----
2026

0 commit comments

Comments
 (0)