Skip to content

Commit 6198e9f

Browse files
committed
fix: correct identifier for manual execution
1 parent 201a569 commit 6198e9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sagittarius/test_execution_client_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl SagittariusTestExecutionServiceClient {
276276
}
277277

278278
async fn load_validation_flow(&self, flow_id: i64) -> Option<ValidationFlow> {
279-
match self.store.get(format!("{}.*", flow_id)).await {
279+
match self.store.get(format!("*.*.*.{}", flow_id)).await {
280280
Ok(Some(bytes)) => match ValidationFlow::decode(bytes) {
281281
Ok(flow) => {
282282
log::debug!(

0 commit comments

Comments
 (0)