summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added tahoe special remote.Gravatar Joey Hess2014-01-08
| | | | | | | | | | | | Known problems: 1. Tries to tahoe start when daemon is already running. 2. If multiple tahoe remotes are set up on the same computer, they will have the same node.url configured by default, and this confuses tahoe commands. This commit was sponsored by LeastAuthority.com
* Revert "need a newish version of containers"Gravatar Joey Hess2014-01-07
| | | | This reverts commit 60407799f1ed49acaeffdb9910a2f5e92e582d13.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-07
|\
* | commentGravatar Joey Hess2014-01-07
| |
* | revert use of Data.Map.StrictGravatar Joey Hess2014-01-07
| | | | | | | | | | memory profile shows this did not contribute to the memory leaks fixed in 4cf6d95c1a9d10cb59669eaceafce4c7a3155eb6
| * need a newish version of containersGravatar Joey Hess2014-01-07
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-07
|\
* | add news item for git-annex 5.20140107Gravatar Joey Hess2014-01-07
| |
| * Added a commentGravatar rtwolf2014-01-07
| |
| * Added a commentGravatar rtwolf2014-01-07
|/
* removed5.20140107Gravatar rtwolf2014-01-07
|
* Added a commentGravatar rtwolf2014-01-07
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-07
|\
* | add DEBUGGravatar Joey Hess2014-01-07
| |
* | work around a strance change in gpg behavior; needs a trustdb to exist even ↵Gravatar Joey Hess2014-01-07
| | | | | | | | when using --trust-model=always
| * (no commit message)Gravatar rtwolf2014-01-07
| |
| * (no commit message)Gravatar rtwolf2014-01-07
| |
| * (no commit message)Gravatar rtwolf2014-01-07
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-07
|\
* | show PATH on failureGravatar Joey Hess2014-01-07
| |
* | add link to tipGravatar Joey Hess2014-01-07
| |
* | add list of public git-annex reposGravatar Joey Hess2014-01-07
| |
* | prep releaseGravatar Joey Hess2014-01-07
| |
* | no lsof on kfreebsdGravatar Joey Hess2014-01-07
| |
| * Added note.Gravatar https://www.google.com/accounts/o8/id?id=AItOawmqaNwDQ367zpW6cIRviLz6zJZZFODgoEI2014-01-07
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnX1msQxnLoSeu7q-i-c9BWghonsN7Qmns2014-01-07
| |
* | closeGravatar Joey Hess2014-01-07
|/
* Added a commentGravatar http://joeyh.name/2014-01-07
|
* (no commit message)Gravatar http://philipp.meier.name/2014-01-07
|
* (no commit message)Gravatar http://philipp.meier.name/2014-01-07
|
* closeGravatar Joey Hess2014-01-07
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawmi5n3M8NMWsDYth_TGGRuJ4_CM2tPQfwg2014-01-07
|
* Added a commentGravatar http://joeyh.name/2014-01-07
|
* (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmi5n3M8NMWsDYth_TGGRuJ4_CM2tPQfwg2014-01-07
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawnmF_9CAtfqdZkC4e-_dCX-rK5bqh4RWkw2014-01-06
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-06
|\
* | devblogGravatar Joey Hess2014-01-06
| |
* | tested transferkeys restarting; fix some bugsGravatar Joey Hess2014-01-06
| |
* | notes on long-running network connectionsGravatar Joey Hess2014-01-06
| |
* | add back sha commands on OSX; SIGILL problem fixedGravatar Joey Hess2014-01-06
| |
* | use strict version of mapGravatar Joey Hess2014-01-06
| |
* | assistant: Start a new git-annex transferkeys process after a network ↵Gravatar Joey Hess2014-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | connection change So that remotes that use a persistent network connection are restarted. A remote might keep open a long duration network connection, and could fail to deal well with losing the connection. This is particularly a concern now that we have external special reotes. An external special remote that is implemented naively might open the connection only when PREPARE is sent, and if it loses connection, throw errors on each request that is made. (Note that the ssh connection caching should not have this problem; if the long-duration ssh process loses connection, the named pipe is disconnected and the next ssh attempt will reconnect. Also, XMPP already deals with disconnection robustly in its own way.) There's no way for git-annex to know if a lost network connection actually affects a given remote, which might have a transfer in process. It does not make sense to force kill the transferkeys process every time the NetWatcher detects a change. (Especially because the NetWatcher sometimes polls 1 change per hour.) In any case, the NetWatcher only detects connection to a network, not disconnection. So if a transfer is in progress over the network, and the network goes down, that will need to time out on its own. An alternate approch that was considered is to use a separate transferkeys process for each remote, and detect when a request fails, and assume that means that process is in a failing state and restart it. The problem with that approach is that if a resource is not available and a remote fails every time, it degrades to starting a new transferkeys process for every file transfer, which is too expensive. Instead, this commit only handles the network reconnection case, and restarts transferkeys only once the network has reconnected and another transfer needs to be made. So, a transferkeys process will be reused for 1 hour, or until the next network connection. ---- The NotificationBroadcaster was rewritten to use TMVars rather than MSampleVars, to allow checking without blocking if a notification has been received. ---- This commit was sponsored by Tobias Brunner.
| * Added a comment: Formatting!Gravatar https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg2014-01-06
| |
| * Added a comment: git log for workspace.xmlGravatar https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg2014-01-06
| |
| * Added a commentGravatar http://joeyh.name/2014-01-06
| |
* | formatGravatar Joey Hess2014-01-06
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-01-06
|\|
* | close old tracking bugGravatar Joey Hess2014-01-06
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkipQLNyt8RHREHpg2k5wdYeRSCCvSNSBg2014-01-06
| |
* | closeGravatar Joey Hess2014-01-06
| |