lex-apollo 0.4.1 → 0.4.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58044db4866170db60e7607b6dd9d5afcf56118c5d8373c180d9618480b59c82
|
|
4
|
+
data.tar.gz: c29bca810b4c41aed2093ee2ee64d12608d53a12d0401a47911b25ca2b9c3705
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f72472b867e644ca58175c5fb7d3d0300a44e2e52fca0d75fd8000d2deae5ef524a29a93418f3be20d074037493d541bd2ddeb7c3b4c0cbdaf0869934147ec6
|
|
7
|
+
data.tar.gz: 0aeee79c5734195652092460791ea4089a8c4e71bcf141f33bb01c0c478dc4ddb44e26410e0d7607270f7fec172131687b58c794c0b9f60bad95a44c676257b2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.2] - 2026-03-24
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- fix `undefined method 'scan_and_ingest' for module EntityExtractor` in EntityWatchdog actor — self-contained actors must override `runner_class` to return `self.class` so the framework dispatches to the actor instance, not the runner module
|
|
7
|
+
|
|
3
8
|
## [0.4.1] - 2026-03-23
|
|
4
9
|
|
|
5
10
|
### Changed
|
|
@@ -16,7 +16,7 @@ module Legion
|
|
|
16
16
|
TASK_LOG_LOOKBACK_SECONDS = 300
|
|
17
17
|
TASK_LOG_LIMIT = 50
|
|
18
18
|
|
|
19
|
-
def runner_class =
|
|
19
|
+
def runner_class = self.class
|
|
20
20
|
def runner_function = 'scan_and_ingest'
|
|
21
21
|
def time = 120
|
|
22
22
|
def run_now? = false
|
|
@@ -23,8 +23,8 @@ RSpec.describe Legion::Extensions::Apollo::Actor::EntityWatchdog do
|
|
|
23
23
|
subject(:actor) { described_class.allocate }
|
|
24
24
|
|
|
25
25
|
describe 'actor configuration' do
|
|
26
|
-
it 'uses
|
|
27
|
-
expect(actor.runner_class).to eq(
|
|
26
|
+
it 'uses self.class as runner_class for self-contained dispatch' do
|
|
27
|
+
expect(actor.runner_class).to eq(described_class)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
it 'runs scan_and_ingest function' do
|