Skip to content

Commit feb5b89

Browse files
Merge pull request #383 from code0-tech/#382-wrong-manual-exec-id
correct identifier for manual execution
2 parents 201a569 + 6198e9f commit feb5b89

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)