openhab-scripting 5.40.0 → 5.40.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d127126eee03f2bf40f89d87519dc43848d7a37fc270cf74f960571b0591a6a
|
4
|
+
data.tar.gz: 9798ed530ab09d88cb3698dff764c264cda7e2e0b85b0a57685006f33513203b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9d52444551b2aa6c8a0e0cab506d2aef028e2fe59c983eaf71cac46ba01e8807f1541bc3d790501d555efb2c93f12ec9d3087c43bb72172f43220a37dcd5620
|
7
|
+
data.tar.gz: 9c4ec38935c532286b9e19a0325870dbccfbe35b6e52dc0d92a47ff30ce6729ce96afa9fdbe14ccf4b2cf6127c727d2e415fd0c3be9af95cb9c64f5a9055f116
|
@@ -36,7 +36,7 @@ module OpenHAB
|
|
36
36
|
# {TimedCommand#command timed command} is being called.
|
37
37
|
#
|
38
38
|
# @attr [Item] item
|
39
|
-
#
|
39
|
+
# The item that the timed command was sent to.
|
40
40
|
# @attr [Types::Type, Proc] on_expire
|
41
41
|
# @!visibility private
|
42
42
|
# @attr [Core::Timer] timer
|
data/lib/openhab/dsl/version.rb
CHANGED
@@ -35,7 +35,8 @@ module OpenHAB
|
|
35
35
|
def handle_event_internal(type, payload, topic, source)
|
36
36
|
event_factory = @typed_event_factories[type]
|
37
37
|
unless event_factory
|
38
|
-
|
38
|
+
# We can't call the block version because this is a native java logger
|
39
|
+
logger.debug("Could not find an Event Factory for the event type '#{type}'.")
|
39
40
|
return
|
40
41
|
end
|
41
42
|
|