-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(charts, bridge): fix ci test #1310
Changes from 8 commits
61a5687
3535a7c
6170173
b207689
118cac2
323370f
a502dbd
0c28d51
be645d2
734514d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ type: application | |
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
# Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
version: 0.2.1 | ||
version: 0.3.0 | ||
|
||
dependencies: | ||
- name: evm-rollup | ||
|
@@ -29,10 +29,10 @@ dependencies: | |
version: 0.1.0 | ||
repository: "file://../evm-faucet" | ||
condition: evm-faucet.enabled | ||
- name: bridge-withdrawer | ||
version: 0.1.0 | ||
- name: evm-bridge-withdrawer | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Our overrides were over the wrong chart sha in tests. The name here wasn't following norms, the name here should match the chart name, fixed the chart instead of just changing values overrides. |
||
version: 0.1.1 | ||
repository: "file://../evm-bridge-withdrawer" | ||
condition: bridge-withdrawer.enabled | ||
condition: evm-bridge-withdrawer.enabled | ||
- name: postgresql | ||
version: "15.2.4" | ||
repository: "https://charts.bitnami.com/bitnami" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -409,12 +409,11 @@ async fn wait_for_empty_mempool( | |
futures::future::ready(()) | ||
}, | ||
); | ||
let sequencer_client = | ||
SequencerServiceClient::connect(format!("http://{}", sequencer_grpc_endpoint.clone())) | ||
.await | ||
.wrap_err_with(|| { | ||
format!("failed to connect to sequencer at `{sequencer_grpc_endpoint}`") | ||
})?; | ||
let sequencer_client = SequencerServiceClient::connect(sequencer_grpc_endpoint.clone()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We shouldn't be forcing http on the url path here, uri protocol specified in the env var. |
||
.await | ||
.wrap_err_with(|| { | ||
format!("failed to connect to sequencer at `{sequencer_grpc_endpoint}`") | ||
})?; | ||
|
||
tryhard::retry_fn(|| { | ||
let sequencer_client = sequencer_client.clone(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is in the cli test, it shouldn't be running the bridge withdrawer