activejob-traceable 0.3.0 → 0.3.1
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/README.md +1 -3
- data/lib/activejob/traceable/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: bf1e8505d754e1c97ab23442354f976b42df0a191d12a74c1acf1aad90e35535
|
|
4
|
+
data.tar.gz: c83de6f7b2ce7e79b6495bc84f572d3dd7a64eda882991f165cd7010ee878218
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb48de5a1f48ff16d8af9bdf648838eb201c6386fe3104545280ac40e34b499ebb75e3cb5e1853cf1c237390573f9e34beee26ae85fd3d229ac6d53bf645fae6
|
|
7
|
+
data.tar.gz: b2fbb9d54f9c1a79694893d4701adad57269f3b713ec3ccd37b8bbc314829fdd9189d7c698d8e3877c8b579b17d430dc8d115cdffe33645b3b7de7260ad28d12
|
data/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
# ActiveJob::Traceable
|
|
2
2
|
|
|
3
|
-
Patches ActiveJob to add
|
|
3
|
+
Patches ActiveJob to add attribute `tracing_info`, which is added as log's tag.
|
|
4
4
|
The purpose of this patch is to be able to trace which workers are called as a result of user's HTTP request.
|
|
5
5
|
|
|
6
|
-
:warning: `trace_id` attribute is now deprecated in favor of `actor_id` and `correlation_id`.
|
|
7
|
-
|
|
8
6
|
## Installation
|
|
9
7
|
|
|
10
8
|
Add this line to your application's Gemfile:
|