dontbugme 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dontbugme/store/sqlite.rb +3 -0
- data/lib/dontbugme/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a70194048020fbf4381c723046b6349ae9ab9751fd60627b1edede6aa2a19052
|
|
4
|
+
data.tar.gz: c71e4e997ea83b35ecf4f4c3f624a3f061837521587b99a7baa40ade7d8daab1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0ecd98974183c4f56242d4f0a5cdb051f50101ce3cf1cbff7bdb292e9e781e9153a031ad0f78f44c90e34e5d73c0d9250519983975a9a485d17d789196724cf
|
|
7
|
+
data.tar.gz: 279e5cd7f6a62056eec771220f81eb9c4e1151c13caed79a6677be1b59e6ba549f360da590eb57c65889301b5d39d657de1efcadd4b1b242f96e05b67301b642
|
|
@@ -31,6 +31,9 @@ module Dontbugme
|
|
|
31
31
|
spans_json,
|
|
32
32
|
error_json
|
|
33
33
|
)
|
|
34
|
+
rescue SQLite3::ReadOnlyException
|
|
35
|
+
# Database is read-only (e.g. production deploy with SQLite on read-only filesystem).
|
|
36
|
+
# Silently skip persistence to avoid crashing the app.
|
|
34
37
|
end
|
|
35
38
|
|
|
36
39
|
def find_trace(trace_id)
|
data/lib/dontbugme/version.rb
CHANGED