We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd72a07 commit 564bf7dCopy full SHA for 564bf7d
lib/raven/event.rb
@@ -32,7 +32,7 @@ def initialize(init = {})
32
@interfaces = {}
33
@breadcrumbs = Raven.breadcrumbs
34
@context = Raven.context
35
- @id = SecureRandom.uuid
+ @id = SecureRandom.uuid.delete("-")
36
@project = nil
37
@message = nil
38
@timestamp = Time.now.utc
spec/raven/integration_spec.rb
@@ -17,7 +17,7 @@
17
18
stubs.verify_stubbed_calls
19
20
- expect(io.string).to match(/Sending event [0-9a-f|-]+ to Sentry$/)
+ expect(io.string).to match(/Sending event [0-9a-f]+ to Sentry$/)
21
end
22
23
example "posting an exception to a prefixed DSN" do
0 commit comments