You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This started happening out of the blue and my notifications stopped working on production (Im using AWS).
Adding ssl_verifypeer: false fixed the issue (or '-k' option in curl).
Not sure if you guys experienced this too, but here is my solution.
classTyphoeusNoSSLCheck# @aryk - The push notifications just stopped out of nowhere because they expo servers changed something with their ssl# certificates (I think) which caused the notifications to not get sent. After some debugging I used the "-k" option on curl# or ssl_verifypeer: false option in this library. This is only required when the calls are made from AWS.defself.post(*args)options=args.last.is_a?(Hash) ? args.pop : {}Typhoeus.post(*args, **options,ssl_verifypeer: false)endend
The text was updated successfully, but these errors were encountered:
This started happening out of the blue and my notifications stopped working on production (Im using AWS).
Adding
ssl_verifypeer: false
fixed the issue (or '-k' option in curl).Not sure if you guys experienced this too, but here is my solution.
The text was updated successfully, but these errors were encountered: