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
There are cases when a subscr_eot event sent through a PayPal IPN which comes before the subscr_payment event causes a problem. s2Member sleeps for up to 5 seconds awaiting the payment notification, but this is sometimes not enough time.
This particular chain of events has the potential to cause an incorrect EOT Time under a scenario where the subscr_eot event occurs immediately upon signup; e.g. the subscription is for one payment only (not recurring); and PayPal is slow to send the subscr_payment event.
Reported by customer via ZenDesk ticket: 1001
NOTE: there are actually two sleep() calls that need to be adjusted. One on the subscr_eot event and another on the subscr_payment event.
The text was updated successfully, but these errors were encountered:
There are cases when a
subscr_eot
event sent through a PayPal IPN which comes before thesubscr_payment
event causes a problem. s2Member sleeps for up to 5 seconds awaiting the payment notification, but this is sometimes not enough time.This particular chain of events has the potential to cause an incorrect EOT Time under a scenario where the
subscr_eot
event occurs immediately upon signup; e.g. the subscription is for one payment only (not recurring); and PayPal is slow to send thesubscr_payment
event.Reported by customer via ZenDesk ticket: 1001
NOTE: there are actually two
sleep()
calls that need to be adjusted. One on thesubscr_eot
event and another on thesubscr_payment
event.The text was updated successfully, but these errors were encountered: