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
if I have no deviceToken assigned, and send a push to that Installation,
then in PushAdapterUtils.classifyInstallations:
// No deviceToken, ignore
if (!installation.deviceToken) {
continue;
}
completely shortcuts any attempted execution of push to these devices.
this is fine, but because the push is never sent, no response from the push service can decrement the count,
so it never completes, and PushStatus is left in a 'running' state with outstanding count equal to the number of null deviceToken records.
somewhere here, this needs to either drop the total count, or decrement the oustanding count,
or just drop the if/continue altogether.
The text was updated successfully, but these errors were encountered:
if I have no deviceToken assigned, and send a push to that Installation,
then in PushAdapterUtils.classifyInstallations:
// No deviceToken, ignore
if (!installation.deviceToken) {
continue;
}
completely shortcuts any attempted execution of push to these devices.
this is fine, but because the push is never sent, no response from the push service can decrement the count,
so it never completes, and PushStatus is left in a 'running' state with outstanding count equal to the number of null deviceToken records.
somewhere here, this needs to either drop the total count, or decrement the oustanding count,
or just drop the if/continue altogether.
The text was updated successfully, but these errors were encountered: