This repository was archived by the owner on Feb 8, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 38
38
steps :
39
39
- uses : actions/checkout@v3
40
40
41
+ - name : Start compose stack
42
+ run : docker compose up -d --wait
43
+
41
44
- name : Install rust
42
45
uses : dtolnay/rust-toolchain@master
43
46
with :
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ version = "0.1.0"
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
7
- capture = { path = " ../capture" }
8
7
axum = { workspace = true }
8
+ capture = { path = " ../capture" }
9
+ envconfig = " 0.10.0"
10
+ time = { workspace = true }
9
11
tokio = { workspace = true }
10
- tracing-subscriber = { workspace = true }
11
12
tracing = { workspace = true }
12
- time = { workspace = true }
13
- envconfig = " 0.10.0"
14
- anyhow = { workspace = true , features = [] }
15
- once_cell = " 1.18.0"
13
+ tracing-subscriber = { workspace = true }
16
14
17
15
[dev-dependencies ]
16
+ anyhow = { workspace = true , features = [] }
18
17
assert-json-diff = { workspace = true }
19
18
futures = " 0.3.29"
19
+ once_cell = " 1.18.0"
20
20
rand = { workspace = true }
21
21
rdkafka = { workspace = true }
22
22
reqwest = " 0.11.22"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ pub static DEFAULT_CONFIG: Lazy<Config> = Lazy::new(|| Config {
27
27
address : SocketAddr :: from_str ( "127.0.0.1:0" ) . unwrap ( ) ,
28
28
export_prometheus : false ,
29
29
redis_url : "redis://localhost:6379/" . to_string ( ) ,
30
- kafka_hosts : "kafka :9092" . to_string ( ) ,
30
+ kafka_hosts : "localhost :9092" . to_string ( ) ,
31
31
kafka_topic : "events_plugin_ingestion" . to_string ( ) ,
32
32
kafka_tls : false ,
33
33
} ) ;
You can’t perform that action at this time.
0 commit comments