robotrafficcop 2017-03-08 07:53:21
Hey all, I'm getting this weird error on "stack build" on a VPS I just spun up. It says that it can't get a file from S3. Maybe related to the recent outage? https://gist.github.com/wyager/e18f5832e2ed29c1f9ba3b197c52432f
thatguy 2017-03-08 07:53:56
kadoban: I meant a random shuffle but I found what I needed
glguy 2017-03-08 07:58:51
robotrafficcop: If your VPS can't resolve that hostname it's probably just misconfigured
robotrafficcop 2017-03-08 08:01:40
glguy: It resolves s3.amazonaws.com just fine. nslookup and ping both work
robotrafficcop 2017-03-08 08:01:49
Which makes me think it might be an issue with something on the Stack end
robotrafficcop 2017-03-08 08:08:23
Well, I tried rebooting, and that seemed to fix it. Typical! No particular reason that should have done anything. Thanks for the suggestion!
robotrafficcop 2017-03-08 08:08:52
Spoke too soon, still broken. Looks like it's doing a request in the background and it's timing out later in the build process
marekw2143 2017-03-08 08:09:17
hi, here: https://bitbucket.org/chessRepo/c7/src/a41bb7d3c99f1dfb1267ec633f898c35b585585e/main.hs?at=master&fileviewer=file-view-default#main.hs-168
marekw2143 2017-03-08 08:10:28
why there's need to be if - else in 168'th line, and not just simply let .. in ?
twopoint718 2017-03-08 08:24:19
brynedwards: Thanks for the help. I was able to figure out a solution to my above problem. Briefly, I was able to extract the connection `Manager` inside the Neo4j `Connection` type. This has a `closeManager` function available that worked for being able to satisfy `createPool`. The slight catch is that closeManager is deprecated, but it'll work for my immediate issue.
Geekingfrog 2017-03-08 08:25:51
I'm having a weird HandshakeFailed error using Req to query www.youtube.com: http://lpaste.net/353322 (using arch-linux, stack and req-0.2.0). Any idea ?
felko 2017-03-08 08:41:29
how can i partially apply a parametrized type alias ?
felko 2017-03-08 08:42:14
for some types it is ok to type (F a) even if F a has not a * kind, but in case it doesn't work for some reason i don't know (paste incoming)
Tuplanolla 2017-03-08 08:42:53
Can't, felko.
Tuplanolla 2017-03-08 08:43:23
If the parameter is present in the definition, it must also be present in application.
felko 2017-03-08 08:43:58
is there a specific reason for that ?
Tuplanolla 2017-03-08 08:44:08
Yes, but I don't remember it.