Benjamin Possolo
Benjamin Possolo
i ran into this problem on CircleCI when trying to source the `nvm.sh` file in the project directory (where an `.nvmrc` file is present). it would exit with error code...
it turns out my fix (defining NVM_DIR before sourcing nvm.sh) didn't actually fix it... > The issue is that you’re setting -e; you shouldn’t be (largely ever). nvm does not...
i tried adding `--install` as you suggested in line 4 and tested it out on my local workstation. it looks like it's attempting to install the wrong version of node...
@alexbruno `` has plenty of valid use-cases in SSR, ADA and SEO so this feature request is more than valid. your suggestion to use a meta element and redirect to...
you're using the api incorrectly. the url that you pass to `WSClient.url()` should only contain the path. if you want to attach query params then you do that after like...
I think you’re misunderstanding how URL encoding works. The + character becomes %2B when url encoded. addQueryParam() accepts unencoded values. That’s the contract. You can’t pass in an already encoded...
`StandaloneAhcWSRequest` uses `play.shaded.ahc.org.asynchttpclient.RequestBuilder` to construct the final url that's requested: https://github.com/playframework/play-ws/blob/master/play-ahc-ws-standalone/src/main/java/play/libs/ws/ahc/StandaloneAhcWSRequest.java#L412 `RequestBuilder` has multiple constructors (https://github.com/eclipse-ee4j/grizzly-ahc/blob/master/src/main/java/com/ning/http/client/RequestBuilder.java#L44 and https://github.com/eclipse-ee4j/grizzly-ahc/blob/master/src/main/java/com/ning/http/client/RequestBuilder.java#L48) which alter the encoding behaviour for the final uri. So you'll need...
try upgrading to azurite 3.17.1 there were several bugs related to SAS validation in azurite versions < 3.17.0 see here for some examples: - https://stackoverflow.com/questions/71834007/server-failed-to-authenticate-the-request-when-attempting-to-generate-sas-uri/72180526 - https://github.com/Azure/Azurite/issues/1404#issuecomment-1111976274
I would not recommend Azurite for any sort of production application. From my experience with using it for development purposes, performance is very slow in comparison to the real Azure...
+1 would love to get a native arm build for our apple silicon! .