Alexey Zapparov

Results 341 comments of Alexey Zapparov
trafficstars

I was able to make it stable by changing code to look like: ``` typescript const postgresSecurityGroup = new awsNative.ec2.SecurityGroup(name, { groupDescription: "Managed by Pulumi", groupName: "postgres-sg", securityGroupEgress: [], securityGroupIngress:...

> @ixti Unfortunately the default allow-all egress rule is something AWS does by default (even if you use the CLI `aws ec2 create-security-group`). You only have two options for preventing...

Can you please provide a demo of the issue? Let's make throttling work with any retry options, as they should be respected.

A warning in README meanwhile is a good too :D

Also, I propose to change `rescue Exception` to `rescue StandardError` to avoid preventing process from dying in case of signals.

@reidmorrison is there any chance this small fix will be merged & released any time soon?

We tried and it still fails: ``` ruby require "sentry/test_helper" RSpec.configure do |config| config.include Sentry::TestHelper config.before do setup_sentry_test { _1.auto_session_tracking = true } end config.after { teardown_sentry_test } end ```

> Thanks for reporting the issue. It does look very puzzling as the only method that could nullify the session flusher is `Sentry.close`. Can you do a quick search to...