Pablo Cantero

Results 55 comments of Pablo Cantero

There's also [PutsReq](http://putsreq.com), which allows you to record the requests and write the responses using Javascript.

Work right with ActiveModel, many thanks. (2) @cgriego Would be great if you can add it in the README.

I have the same problem using with AR.includes ``` Restaurant.includes(:dishes).near(lat, lng, 100).where("dishes.name = ?", dish_name) ``` Geocorder doesn't add the distance column in the query if I add AR.includes. How...

@kevinelliott In my case I used the workaround bellow ``` selected_dish = Dish.find_by_name(dish_name).first selected_dish.restaurants.near(lat, lng, 100) ``` It works as a join.

@noelrappin shall we :shipit: ?

Unfortunately Asgard uses only its own tags. To automatically add tags in my AutoScaling Groups I use `as-create-or-update-tags`. ``` bash as-create-or-update-tags --tag "id=MyAutoScalingGroupName, t=auto-scaling-group, k=Name, v=MachineName, p=true" ``` [Tagging Auto...

:+1: I have the same need. The Netflix env variables mean nothing for me. I don't feel comfortable to use a `PARTNER` as a `DATABASE_URL`. If I was able to...

Hey You can try to update the `docker-compose.yml` to use a volume for MongoDB. In the way it is, it is supposed to map MongoDB to the filesystem [`./tmp/db`](https://github.com/phstc/putsreq/blob/master/docker-compose.yml#L6) so...

> Could it be my version of next: 12.2.5? Quick update: I tried with nextjs 11.1.4 and got the same error.

@abdallahshaban557 no changes in the `cookiestorage`. This is my entire Amplify config: ```typescript const amplifyConfig = { ssr: true, Auth: { identityPoolId: process.env.NEXT_PUBLIC_IDENTITY_POOL_ID, region: process.env.NEXT_PUBLIC_REGION, userPoolId: process.env.NEXT_PUBLIC_USER_POOL_ID, userPoolWebClientId: process.env.NEXT_PUBLIC_USER_POOL_WEB_CLIENT_ID, },...