Kevin D Smith
Kevin D Smith
Can you wrap that code in the following? I'm not sure what would cause this and I'd like to see what the HTML is that's coming back. ``` httr::with_verbose( ,...
I guess I assumed that you were connecting to CAS using the HTTP interface, is that correct? If so, are you connecting directly to the CAS HTTP server, or is...
I'm puzzled as to why the `httr::with_verbose` isn't showing anything. That should display the HTTP request and the full response. I have a feeling the server is failing somewhere and...
You can try hitting the REST endpoint directly with something like `curl` as follows: ``` curl -X POST -u username:password -d '{"table":"", "from":1, "to":100}' -H 'Content-Type: application/json' /cas/sessions//actions/table.fetch ``` This...
Typically, I just use the `httr::with_verbose` wrapper around whatever call is causing the problem and it shows you all of the HTTP requests in raw form. I don't know why...
I've seen 502 errors in testing, but I've only seen them if the CAS controller goes down and the backup has to take over. I'm pretty sure that's not happening...
The log you sent shows a `HTTP/1.1 502 Proxy Error' message in it. So I'm still thinking there is either some error from the server, or the proxy itself is...
It does look like these functions have been in `libc.a` for quite a while, so I'm guessing it's an updated dependency of wasi-vfs.
Even when I build with wasi-sdk 14, I get those errors, so I'm not sure what the difference is between your builds and mine.
Oh, I bet that the linker was filtering out the symbols if they weren't used. I'm compiling the pandas package of Python which does a lot of numeric computation and...