File tree Expand file tree Collapse file tree 2 files changed +389
-0
lines changed
io-engine-tests/src/compose/rpc Expand file tree Collapse file tree 2 files changed +389
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ pub struct RpcHandle {
51
51
pub host : host:: HostRpcClient < Channel > ,
52
52
pub nexus : nexus:: NexusRpcClient < Channel > ,
53
53
pub snapshot : snapshot:: SnapshotRpcClient < Channel > ,
54
+ pub stats : stats:: StatsRpcClient < Channel > ,
54
55
pub test : test:: TestRpcClient < Channel > ,
55
56
}
56
57
@@ -106,6 +107,11 @@ impl RpcHandle {
106
107
. await
107
108
. unwrap ( ) ;
108
109
110
+ let stats =
111
+ stats:: StatsRpcClient :: connect ( format ! ( "http://{endpoint}" ) )
112
+ . await
113
+ . unwrap ( ) ;
114
+
109
115
let test = test:: TestRpcClient :: connect ( format ! ( "http://{endpoint}" ) )
110
116
. await
111
117
. unwrap ( ) ;
@@ -120,6 +126,7 @@ impl RpcHandle {
120
126
host,
121
127
nexus,
122
128
snapshot,
129
+ stats,
123
130
test,
124
131
} )
125
132
}
You can’t perform that action at this time.
0 commit comments