pampa 2.0.32 → 2.0.33
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/pampa/dispatcher.rb +2 -2
- data/lib/pampa/worker.rb +2 -2
- data/pampa.gemspec +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: 84832cca8c02aa3598425b850c3532ccb362ed1dc2830d7a5e3772c5bcbdf3a5
|
|
4
|
+
data.tar.gz: 3a79500e803be1c35a41c52eb633c2bbafb94b20011723a06786d4d728f35f94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0136fe602e1b83f8eded858860b66f9ffa9daaf2d507bdaca52b66d961e913a77b924ef90f17a2592cf5f8724954a58af1d3b9dd7b5ccf94dcb6b12db7f9bd6f
|
|
7
|
+
data.tar.gz: b20d208d0344632c423d54448183c5a8a85e5e4344f6db1d2639edd45efb32287d428942474e3e581d65a987c1f6ab45f65c8dbd96c251875ce162be5ae6ea8a
|
data/lib/pampa/dispatcher.rb
CHANGED
|
@@ -62,9 +62,9 @@ l.logf 'done'.green
|
|
|
62
62
|
|
|
63
63
|
# call dispatcher code snippet
|
|
64
64
|
l.logs 'Calling dispatcher code snippet... '
|
|
65
|
-
f = BlackStack::Pampa.dispatcher_function
|
|
65
|
+
f = BlackStack::Pampa.dispatcher_function
|
|
66
66
|
if f
|
|
67
|
-
f.call
|
|
67
|
+
f.call(l)
|
|
68
68
|
l.logf 'done'.green
|
|
69
69
|
else
|
|
70
70
|
l.logf 'no dispatcher code snippet found'.yellow
|
data/lib/pampa/worker.rb
CHANGED
|
@@ -68,9 +68,9 @@ l.logf 'done'.green
|
|
|
68
68
|
|
|
69
69
|
# call dispatcher code snippet
|
|
70
70
|
l.logs 'Calling worker code snippet... '
|
|
71
|
-
f = BlackStack::Pampa.worker_function
|
|
71
|
+
f = BlackStack::Pampa.worker_function
|
|
72
72
|
if f
|
|
73
|
-
f.call
|
|
73
|
+
f.call(l)
|
|
74
74
|
l.logf 'done'.green
|
|
75
75
|
else
|
|
76
76
|
l.logf 'no worker code snippet found'.yellow
|
data/pampa.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'pampa'
|
|
3
|
-
s.version = '2.0.
|
|
3
|
+
s.version = '2.0.33'
|
|
4
4
|
s.date = '2023-10-07'
|
|
5
5
|
s.summary = "Ruby library for async & distributed computing, supporting dynamic reconfiguration, distribution of the computation jobs, error handling, job-retry and fault tolerance, and fast (non-direct) communication to ensure real-time capabilities."
|
|
6
6
|
s.description = "Pampa is a Ruby library for async & distributing computing providing the following features:
|