Skip to content

Commit

Permalink
remove archivefile from integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
imabdulbasit committed Nov 26, 2024
1 parent 232043b commit 7222b9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
NEXTEST_PROFILE: integration
INTEGRATION_TEST_SEQUENCER_VERSION: ${{ matrix.version }}
run: |
cargo nextest run --archive-file nextest-archive-postgres.tar.zst --verbose --no-fail-fast --nocapture \
cargo nextest run --verbose --no-fail-fast --nocapture \
--workspace-remap $PWD $(if [ "${{ matrix.version }}" == "2" ]; then echo " smoke"; fi)
timeout-minutes: 10

Expand Down
2 changes: 1 addition & 1 deletion sequencer/src/persistence/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ impl SequencerPersistence for Persistence {
}

async fn save_config(&self, cfg: &NetworkConfig) -> anyhow::Result<()> {
tracing::info!("saving config to Postgres");
tracing::info!("saving config to database");
let json = serde_json::to_value(cfg)?;

let mut tx = self.db.write().await?;
Expand Down

0 comments on commit 7222b9d

Please sign in to comment.