Tyson Andre
Tyson Andre
e.g. `@return A&B&A` is redundant (check after resolving namespace uses) Phan will already remove redundant types and base types, but warn about the exact name being repeated Possibly emit a...
(and `hgetallMapBuffer: Map`) Motivation: - Make it easier to write consise code that avoids prototype pollution - Often, I'd end up converting `Object.entries(await redis.hgetall(key))` to a Map anyway. (easier to...
https://docs.travis-ci.com/user/languages/javascript-with-nodejs/ provides node 16, and node 16 LTS is out. EDIT: This is consistently failing in node 16. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions#no_binding_of_arguments seems to be misused with arrow functions in test/functional/cluster/pub_sub.ts but that...
For #1027 Having a stable low level api to evaluate scripts would be something I'd personally consider useful for: 1. Third party libraries that prefer avoiding mutating the passed in...
srv/apns/http_api/processor.go has `http2UrlHost = "https://api.development.push.apple.com"` https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns/
Timeouts may depend on available bandwidth and burstiness of requests, but if a client expects a response from uniqush within 5 seconds then it may be useful to reduce it...
Related to https://github.com/uniqush/uniqush-push/issues/255 - it becomes unnecessary after november
From https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server > **Establish a Trusted Connection to APNs** > Communication between your provider server and APNs must take place over a secure connection. Creating that connection requires installing the...
This seems optional but recommended for iPhones/iPads, but not watchOS > apns-push-type | (Required for watchOS 6 and later; recommended for macOS, iOS, tvOS, and iPadOS) The value of this...
``` [Push][Error] 2020/08/20 12:06:10 RequestID=............. Service=hi5.apns Subscriber=Unknown PushServiceProvider=apns:hexdata.... DeliveryPoint=Unknown Failed: Bad Notification: DeviceTokenNotForTopic` ``` Currently, the logging is useless for determining the affected subscriber because there is no way to...