- 08 May, 2015 6 commits
-
-
W. Trevor King authored
I'm not entirely clear on Go's scoping (there's some text I can't quite parse here [1]), but it seems like the := version (because this is the first time we use 'err') was masking the function-level 'nd' just for this if block. That means that after we get out of the if block and return to the start of the for-loop for the next pass, nd.Links would still be pointing at the original object's links. This commit drops the :=, which fixes the earlier: $ ipfs ls QmXX7YRpU7nNBKfw75VG7Y1c3GwpSAGHRev67XVPgZFv9R/static/css Error: no link named "css" under QmXX7YRpU7nNBKfw75VG7Y1c3GwpSAGHRev67XVPgZFv9R so we get the intended: $ ipfs ls QmXX7YRpU7nNBKfw75VG7Y1c3GwpSAGHRev67XVPgZFv9R/static/css Qme4r3eA4h1revFBgCEv1HF1U7sLL4vvAyzRLWJhCFhwg2 7051 style.css It also means we're probably missing (or are unreliably using) a multi-level-path-resolving test. [1]: https://golang.org/ref/spec#Declarations_and_scope
-
Juan Batiz-Benet authored
core: add context.Context param to core.Resolve()
-
Juan Batiz-Benet authored
godeps: update metrics (freebsd build fix)
-
Juan Batiz-Benet authored
add link to community contributing #1088
-
Juan Batiz-Benet authored
godeps: rewrite import path
-
Henry authored
commands/object: remove objectData() and objectLinks() helpers resolver: added context parameters sharness: $HASH carried the \r from the http protocol with sharness: write curl output to individual files http gw: break PUT handler until PR#1191
-
- 07 May, 2015 4 commits
-
-
Henry authored
-
Chris Grimmett authored
-
Juan Batiz-Benet authored
ipnsfs/system: Fix 'retreive' -> 'retrieve' typo
-
W. Trevor King authored
From 93b06f34 (Add timeout to ipns resolution at startup, 2015-04-24, #1133).
-
- 06 May, 2015 8 commits
-
-
Henry authored
-
Juan Batiz-Benet authored
mild refactor of bitswap
-
Jeromy authored
-
Jeromy Johnson authored
-
Juan Batiz-Benet authored
correct the blocksize calculation for link blocks
-
Jeromy Johnson authored
update hash for bigfile
-
Juan Batiz-Benet authored
make comments match the code in secure channel implementation
-
Dominic Tarr authored
-
- 05 May, 2015 5 commits
-
-
Juan Batiz-Benet authored
quick fix for OOM panic that has been plaguing us
-
Juan Batiz-Benet authored
try harder to not send duplicate blocks
-
Juan Batiz-Benet authored
increase iptb test stability
-
Juan Batiz-Benet authored
fix append bug and overwrite/truncate bug
-
Jeromy authored
update iptb dependency again, and pick different ports for each iptb cluster try and fix godeps crap
-
- 04 May, 2015 3 commits
-
-
Juan Batiz-Benet authored
Improve parse_test.go
-
Jeromy authored
-
Jeromy Johnson authored
core/commands/internal/slice_util: Remove this unused package
-
- 03 May, 2015 5 commits
-
-
Juan Batiz-Benet authored
godep: update go-msgio
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Henry authored
-
- 02 May, 2015 9 commits
-
-
Christian Couder authored
Now also check that we get the right arguments from the parsing. License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Christian Couder authored
Let's document how stdin enabled arguments currently work by adding some tests. License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Christian Couder authored
License: MIT Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
-
Juan Batiz-Benet authored
Record Datastore metrics for flatfs and leveldb
-
Juan Batiz-Benet authored
Add package comments to packages that are missing them
-
Juan Batiz-Benet authored
write memory profiles every 30 seconds when enabled
-
Juan Batiz-Benet authored
dont create a new ticker each loop
-
W. Trevor King authored
Currently garbage collection is triggered manually and there are no age-restrictions on the removal. I expect we'll eventually follow Git and auto-launch garbage collection when we hit some threshold of disk consumption (gc.auto). I expect we'll also follow Git and keep unpinned or unreachable objects (gc.pruneexpire, etc.). But we don't seem to do either of those yet.
-