From b6481acf6824cb88debcb9d3bedb8f35b76eea26 Mon Sep 17 00:00:00 2001 From: Petko Date: Fri, 2 Jun 2023 18:04:19 +0300 Subject: [PATCH] chore: release 0.3.4 --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- poi-radio/Cargo.toml | 3 +-- test-runner/src/main.rs | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c84bba..276d9d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Bug Fixes + +- Server context types + ### Features - Disable notifications for known divergences @@ -15,6 +19,7 @@ All notable changes to this project will be documented in this file. - Release 0.3.2 - Release 0.3.3 +- Release 0.3.4 ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 9210a2d..69f3ee4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3859,7 +3859,7 @@ dependencies = [ [[package]] name = "poi-radio" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "async-graphql", diff --git a/poi-radio/Cargo.toml b/poi-radio/Cargo.toml index 994e6eb..9555d49 100644 --- a/poi-radio/Cargo.toml +++ b/poi-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poi-radio" -version = "0.3.3" +version = "0.3.4" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "POI Radio monitors subgraph data integrity in real time using Graphcast SDK" @@ -19,7 +19,6 @@ serde_json = "1.0.96" sha3 = "0.10.8" derive-getters = "0.2.1" tokio = { version = "1.28.1", features = ["full", "rt"] } -# tokio = { version = "1.28", features = ["full", "tracing", "rt", "parking_lot"] } anyhow = "1.0" graphql_client = "0.9.0" serde_derive = "1.0" diff --git a/test-runner/src/main.rs b/test-runner/src/main.rs index 4124056..7ed3775 100644 --- a/test-runner/src/main.rs +++ b/test-runner/src/main.rs @@ -103,8 +103,8 @@ pub async fn main() { radio: Arc::clone(&radio), }; - // Wait for 2 minutes asynchronously - sleep(Duration::from_secs(120)).await; + // Wait for 3 minutes asynchronously + sleep(Duration::from_secs(180)).await; // Kill the processes let _ = cleanup.sender.lock().unwrap().kill();