summaryrefslogtreecommitdiff
path: root/doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (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 Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --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=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn')
-rw-r--r--doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn b/doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn
deleted file mode 100644
index 77392b36d..000000000
--- a/doc/todo/enable_fsck_--fast_for_S3_remotes.mdwn
+++ /dev/null
@@ -1,30 +0,0 @@
-At the moment, ``git annex fsck --fast -f S3remote`` fails as
-
-[[!format sh """
-> git annex fsck --fast -f S3remote
-(checking cloud...) [2015-04-24 21:39:35 BST] String to sign: "HEAD\n\n\nFri, 24 Apr 2015 20:39:35 GMT\n/BUCKET/GPGHMACSHA1--6e7e880f80de44ddd845c6241198622b9102eaa1"
-[2015-04-24 21:39:35 BST] Host: "BUCKET.s3-ap-southeast-2.amazonaws.com"
-[2015-04-24 21:39:35 BST] Path: "/GPGHMACSHA1--6e7e880f80de44ddd845c6241198622b9102eaa1"
-[2015-04-24 21:39:35 BST] Query string: ""
-[2015-04-24 21:39:36 BST] Response status: Status {statusCode = 200, statusMessage = "OK"}
-[2015-04-24 21:39:36 BST] Response header 'x-amz-id-2': 'D9wtD8voZZgijJRc6i8i0QasAo85REdMMf4GpRaER5+g6sDaUYtCKi42RCdYU0kBxrx4d4dM4xM='
-[2015-04-24 21:39:36 BST] Response header 'x-amz-request-id': 'DDF95C327078E584'
-[2015-04-24 21:39:36 BST] Response header 'Date': 'Fri, 24 Apr 2015 20:39:37 GMT'
-[2015-04-24 21:39:36 BST] Response header 'Last-Modified': 'Sun, 02 Nov 2014 05:42:48 GMT'
-[2015-04-24 21:39:36 BST] Response header 'ETag': '"3bd1b766a68a305ba0495af36b353a07"'
-[2015-04-24 21:39:36 BST] Response header 'Accept-Ranges': 'bytes'
-[2015-04-24 21:39:36 BST] Response header 'Content-Type': ''
-[2015-04-24 21:39:36 BST] Response header 'Content-Length': '775647'
-[2015-04-24 21:39:36 BST] Response header 'Server': 'AmazonS3'
-[2015-04-24 21:39:36 BST] Response metadata: S3: request ID=<none>, x-amz-id-2=<none>
-
- failed to download file from remote
-
-failed
-"""]]
-
-
-while ``git annex fsck -f S3remote`` works fine. But, to check for the presence of a file (which is my understanding of what ``--fast`` is for here), it shouldn't be necessary to download the file.
-
-> [[fixed|done]]; it was not supposed to fail at all in this case, and
-> won't anymore. --[[Joey]]