Disappointed with Openhab 2.2

I enjoy similar problems, mostly it is the Channel not found for datapoint problem with my homematic items. I have about 50 of them, most of them radiator and wall thermostat with plenty of channels.

My first solution was to tidy up some rules triggers, which turned the problem to less existing, but not solved.

Currently i am working on a solution to remove the rules before startup and copy them back about a few minutes later. (Not really copying, but renaming)

Startup seems to be far cleaner and faster, the problem is currently not visible.

@pensionado
Since the problem is more visible on your system, if you don’t mind, could you please check if this approach would help you as well?

Here is my shell script for moving the rules:

#!/bin/sh

ORG=$1
NEW=$2
IGNORE=moverules.rules

for f in /etc/openhab2/rules/*.${ORG};
do
    OLDFILE=$f
    NEWFILE=${f%$ORG}$NEW
    mv "$OLDFILE" "$NEWFILE"
done

turn off rules:

moverules.sh rules rulesx

turn them on again after startup:

moverules.sh rulesx rules

@mstormi
Oops, i just duplicated your request. :open_mouth:
Should read more thoroughly. Sorry, didn’t mean to copy. :blush: