Skip to content

Commit be475f5

Browse files
committed
refactor(cubesql): Fix identity_op warning
1 parent e552ab7 commit be475f5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

rust/cubesql/cubesql/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ collapsible_else_if = "allow"
9797
comparison_chain = "allow"
9898
derive_ord_xor_partial_ord = "allow"
9999
field_reassign_with_default = "allow"
100-
identity_op = "allow"
101100
if_same_then_else = "allow"
102101
into_iter_on_ref = "allow"
103102
iter_cloned_collect = "allow"

rust/cubesql/cubesql/e2e/tests/postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl PostgresIntegrationTestSuite {
8383
services.wait_processing_loops().await.unwrap();
8484
});
8585

86-
sleep(Duration::from_millis(1 * 1000)).await;
86+
sleep(Duration::from_secs(1)).await;
8787

8888
let client = PostgresIntegrationTestSuite::create_client(
8989
format!("host=127.0.0.1 port={} user=test password=test", port)

0 commit comments

Comments
 (0)