Skip to content

Commit 527f1e9

Browse files
authored
Merge branch 'dev' into clean-up-marketing-campaign
2 parents 47b6b7b + e1401ee commit 527f1e9

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

docs/config/dev.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ health_threshold_promilles = 950
1313
health_unsignable_promilles = 750
1414
propagation_timeout = 1000
1515

16-
list_timeout = 5000
1716
fetch_timeout = 5000
1817
validator_tick_timeout = 5000
1918

docs/config/prod.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ health_threshold_promilles = 970
1313
health_unsignable_promilles = 770
1414
propagation_timeout = 3000
1515

16-
list_timeout = 10000
1716
fetch_timeout = 10000
1817
validator_tick_timeout = 10000
1918

primitives/src/config.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ pub struct Config {
2929
pub health_unsignable_promilles: u32,
3030
pub propagation_timeout: u32,
3131
pub fetch_timeout: u32,
32-
pub list_timeout: u32,
3332
pub validator_tick_timeout: u32,
3433
pub ip_rate_limit: RateLimit, // HashMap??
3534
pub sid_rate_limit: RateLimit, // HashMap ??

sentry/src/access.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub async fn check_access(
7272
}
7373

7474
// Only the creator can send a CLOSE
75-
if is_creator && events.iter().any(is_close_event) {
75+
if !is_creator && events.iter().any(is_close_event) {
7676
return Err(Error::OnlyCreatorCanCloseChannel);
7777
}
7878

0 commit comments

Comments
 (0)