diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-06-20T09·55+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-06-20T09·55+0200 |
commit | 22144afa8d9f8968da351618a1347072a93bd8aa (patch) | |
tree | f0ebe5edf3a480a9d9afd637b9056e352e049541 /tests | |
parent | 2b29e4b8529ec9f4d6904a5142266c02d1b24c99 (diff) |
Don't keep "disabled" substituters running
For instance, it's pointless to keep copy-from-other-stores running if there are no other stores, or download-using-manifests if there are no manifests. This also speeds things up because we don't send queries to those substituters.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/substituter.sh | 1 | ||||
-rwxr-xr-x | tests/substituter2.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/substituter.sh b/tests/substituter.sh index 885655760e05..9aab295de87b 100755 --- a/tests/substituter.sh +++ b/tests/substituter.sh @@ -1,4 +1,5 @@ #! /bin/sh -e +echo echo substituter args: $* >&2 if test $1 = "--query"; then diff --git a/tests/substituter2.sh b/tests/substituter2.sh index 34b2c0eafaf8..5d1763599c25 100755 --- a/tests/substituter2.sh +++ b/tests/substituter2.sh @@ -1,4 +1,5 @@ #! /bin/sh -e +echo echo substituter2 args: $* >&2 if test $1 = "--query"; then |