aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-10-10 06:25:32 -0400
committerGitHub <noreply@github.com>2024-10-10 06:25:32 -0400
commit20a4c8c1707055c6d53265213f2a2d6b834aa037 (patch)
tree41909b2f606dd391cba31a1b54d6b123b6347558 /src
parent781f9873f20c45155e0dc3548bf47c74ab4a08fb (diff)
parentb98088f7b7cfe4b08eb39fa1b6b86210cb6c08b8 (diff)
downloadstasis-20a4c8c1707055c6d53265213f2a2d6b834aa037.tar.gz
Merge pull request #60 from jhunkeler/its-backwards
Don't run serial tasks in parallel
Diffstat (limited to 'src')
-rw-r--r--src/delivery_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delivery_test.c b/src/delivery_test.c
index e1d5efa..cb78f64 100644
--- a/src/delivery_test.c
+++ b/src/delivery_test.c
@@ -236,7 +236,7 @@ void delivery_tests_run(struct Delivery *ctx) {
}
// Setup tasks run sequentially
- if (p == (size_t) SETUP) {
+ if (p == (size_t) SETUP || p == (size_t) SERIAL) {
jobs = 1;
}