Tom Pesman

Results 10 comments of Tom Pesman

The host is set here: https://github.com/tompesman/push-apns/blob/master/lib/push/daemon/apns_support/connection_apns.rb#L16 so it looks like it is false there. If you query the configuration is the sandbox value true or false?

This is true for iOS only as the phone has a device token, Android has an unique token per application install. Documentation in the feedback_processor template should be sufficient I...

Yes, this would be a nice feature. Right now it is not possible.

Can you please try this feature branch? ``` gem 'push-core', github: 'tompesman/push-core', branch: 'feature/single_run' gem 'push-apns', github: 'tompesman/push-apns', branch: 'feature/single_run' gem 'push-c2dm', github: 'tompesman/push-c2dm', branch: 'feature/single_run' gem 'push-gcm', github: 'tompesman/push-gcm',...

Hi, same problem here. We've compared to our previous version and to iOS. ![Screenshot 2022-07-26 at 10 45 41](https://user-images.githubusercontent.com/116475/180967827-f3016464-3dd6-47bd-8f08-96a9d12f6b71.png) Can we expect this to be solved or should we enable...

That's an interesting one, are you sure that there are no side effects?

Hi Simon, I've added a test to `test/web/controllers/export_controller_test.exs` ```elixir test "export with default order 2", %{conn: conn, project: project, revision: revision, language: language} do document = %Document{project_id: project.id, path: "test2",...

Hi, I'm also analysing the performance of ExVCR, in my case a test with ExVCR is about 20x times slower than a test without, 230ms vs 20ms. The tests with...

After some more research it looks like the `mock.ex` file is causing the delay. The `Task.await(:infinity)` method is waiting for `:meck.expect(module_name, function, callback)` to return. Not sure why there is...

Hello, I've verified the pull request, any chance this request is merged and a new gem is released? Thanks!