Skip to content

Commit b72b11c

Browse files
authored
Faster cache (#423)
1 parent e954367 commit b72b11c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

task-maker-cache/src/entry.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@ impl CacheEntryItem {
6464
.map(|(path, file)| (path.clone(), file_keys[&file.uuid].key().clone()))
6565
.collect();
6666
CacheEntryItem {
67-
result,
67+
result: ExecutionResult {
68+
stdout: None,
69+
stderr: None,
70+
..result
71+
},
6872
limits: execution.limits.clone(),
6973
stdout,
7074
stderr,

0 commit comments

Comments
 (0)