I have an elixir phoneix application that receives Stripe webhooks to update payment status in the database, I have a problem, sometimes my webhook endpoint does not return a response to stripe so the webhook will be failed.
When I looked in the logs : I found that sometimes the request does not pass through the Plug (in the Plug I check the signature of the webhook), and then the request can reach the Controller function.
Well it seems like the plug is executed successfully then. You’ll have to post more code that is supposed to be executed after it to troubleshoot further.
What do you think @dimitarvp ? I don’t think it’s a networking problem (k8s istio ingress) becuase the request can reach the Plug but not pass to the Controller
Maybe add an IO.inspect(stripe_event) after this or wrap the assignment like so
conn
|> IO.inspect(label: "conn before when signature OK")
|> Plug.Conn.assign(:stripe_event, stripe_event)
|> IO.inspect(label: "conn after when signature OK")
to determine if there’s anything unexpected going on with the conn that do not reach the function in the controller.
The request could also potentially be reaching the controller and just not matching on webhooks_payment if there’s no catchall function head e.g. def webhooks_payment(conn, params), do: IO.inspect(conn, label: "conn from catchall webhooks_payments")
and the problem seems to have gone away . I haven’t done any further digging into exactly why this is the case (the exact difference between the conn passed into Plug.Conn.read_body and the one that comes out , and how this affects the pipeline downstream . If anyone has any insight on it , am curious to hear)
While I can’t comment on the exact reasons I’d always advise to use the Plug.Conn that’s returned to you. If you have such a return value then the underlying library has changed it and gives you the modified copy. So just use that.