Sendu Bala
Sendu Bala
No, just a normal operating system (ubuntu). For my code path that _does_ use go-fuse, I obviously need it to work correctly, so I can't just disable splice completely, unless...
It's not an open file limit issue, or at least not in a way that I can fix. I'm an order of magnitude under my limit, and the only thing...
Even without understanding the problem, can you agree that it's better to not have code that has system-wide side-effects on import? Can you describe in words what this code is...
After a bit of debugging, it looks like when you defer to `reflect.DeepEqual`, it's returning false. So not your "fault", but the message returned is confusing. Why isn't `ShouldResemble` implemented...
I can see in samtools 1.4 there is a hfile_s3.c that seems to have all the necessary code for getting the correct domain from ~/.s3cfg, but is it actually supposed...
I'm using Ceph Object Gateway, which sort of works with v4, but is best used with v2 signatures. ``` cd ~/samtools-1.4/htslib-1.4 ./htsfile -vvvvvv -c s3://mybucket/my.cram [M::load_hfile_plugins] loaded "knetfile" [W::hts_path_itr] can't...
My reading of the existing code is that it should be working already if I don't have a ~/.aws/credentials file (and I don't), but I'll give the PR a go...
``` $ echo $AWS_SHARED_CREDENTIALS_FILE $ ls -alth ~/.aws/credentials ls: cannot access '/home/ubuntu/.aws/credentials': No such file or directory ``` Trying the PR: ``` cd ~/samtools-1.4/htslib-1.4 wget "https://raw.githubusercontent.com/blajoie/htslib/2230dc6f1b610a4be2fd869500d99ae784035e12/hfile_s3.c" mv hfile_s3.c.1 hfile_s3.c make...
Oh, the current code also doesn't parse the config files if the $AWS_ACCESS_KEY_ID env var is set, and I had it set. Hence the PR working.
I've hit this issue again: now that I had a ~/.aws/credentials file, it didn't work until I renamed it. > While implementing it, it became apparent that mixing up config...