-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arrays of arrays #6
Comments
Hi @jamesholcomb, Indeed, the As per line number 37: Line 37 in 8506b6e
The variable Please let me know if there's anything else I can help with. |
can you remove the console.error call and instead allow a Logger impl with the standard Console function signatures to be passed to the Client? it would be helpful with debugging issues in production since testing extreme loads with real device tokens is basically impossible. |
Hi @jamesholcomb, |
indeed i considered this, but it's too impractical to maintain this JS code. also, there are no unit tests, no linting, no prettier rules,...it's not setup for community driven changes. |
Hello in the TS project that I'm keeping (https://gitlab.com/kenble/fcm-http2), always thanking eladnava, this fix was already present. This is because I had noticed this problem from my tests. |
I ended up switching to firebase-admin once they implemented http2 sessions. |
Please be advised that while This means that only 100 notifications can be sent at any given time over this single connection, which means that For high-throughput, low-latency notification delivery, it is still recommended to make use of a solution which employs HTTP/2 multiplexing, such as this package. |
fcm-v1-http2/index.js
Line 62 in 8506b6e
fcm-v1-http2/index.js
Line 37 in 8506b6e
you need to spread the input arg...TS would have caught this type of error.
The text was updated successfully, but these errors were encountered: