aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/git-annex_creates_many_zombies.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/git-annex_creates_many_zombies.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/bugs/git-annex_creates_many_zombies.mdwn')
-rw-r--r--doc/bugs/git-annex_creates_many_zombies.mdwn33
1 files changed, 0 insertions, 33 deletions
diff --git a/doc/bugs/git-annex_creates_many_zombies.mdwn b/doc/bugs/git-annex_creates_many_zombies.mdwn
deleted file mode 100644
index d0f55dc71..000000000
--- a/doc/bugs/git-annex_creates_many_zombies.mdwn
+++ /dev/null
@@ -1,33 +0,0 @@
-### Please describe the problem.
-
-In a debian unstable docker container, I run `git-annex assistant --auto` on a few repositories.
-
-After a few days, I have many (> 10000 right now) zombie processes:
-
- % ps x | grep "git-annex.*defunct" | wc -l
- 10325
-
-### What steps will reproduce the problem?
-
-Keep `git-annex assistant` running.
-
-### What version of git-annex are you using? On what operating system?
-
-Binary version 5.20151116-gbe86081 on Debian Linux unstable (up-to-date from a few days ago when my docker container started)
-
-### Please provide any additional information below.
-
-[[!format sh """
-# If you can, paste a complete transcript of the problem occurring here.
-# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log
-
-
-# End of transcript or log.
-"""]]
-
-### Have you had any luck using git-annex before? (Sometimes we get tired of reading bug reports all day and a lil' positive end note does wonders)
-
-I couldn't live without git-annex to synchronize my documents over multiple hosts and archives :-)
-
-> [[done]]; this is a docker bug if anything, and I really don't see any
-> way git-annex can solve it. --[[Joey]]