nixos: services: transmission: use longer timeout
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
It looks like Transmission takes time roughly proportional with the number of open files to stop, so let's increase the timeout slightly.
This commit is contained in:
parent
127e26b259
commit
b37bde6eaf
1 changed files with 2 additions and 0 deletions
|
|
@ -77,6 +77,8 @@ in
|
||||||
MemoryMax = "33%";
|
MemoryMax = "33%";
|
||||||
# Avoid errors due to high number of open files.
|
# Avoid errors due to high number of open files.
|
||||||
LimitNOFILE = 1048576;
|
LimitNOFILE = 1048576;
|
||||||
|
# Longer stop timeout to finish all torrents
|
||||||
|
TimeoutStopSec = "5m";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue