KNX Thing no longer working after Upgrade 3.x -> 4.x

Hello,

I have an issue with a single KNX Thing which worked well over years in OH3.x. Since upgrading to OH 4.02 it doesn’t work no longer. The Upgrade was done via backup OH 3, complete new installation of OH 4 and then restoring the OH 3 configuration. All worked well immediately except one Thing.

For this I get
HANDLER_INITIALIZING_ERROR
Index 0 out of bounds for length 0”

Log file:

 changed from UNINITIALIZED (HANDLER_INITIALIZING_ERROR): Index 0 out of bounds for length 0 to UNINITIALIZED (HANDLER_MISSING_ERROR)

I created a new thing for this device which was immediately initialized and reported as online.
Then I defined all channels.
Unlinked the Items of the old Thing and linked them to the new Thing/Channels.
The Thing was still online but the Items didn’t got updated.
So I disabled the new Thing and reenabled it.
The result is now the same as with the old Thing (deleted). Same error as above …

Can anyone help me to get this issue solved?

Thanks a lot in advance.

Helmut

Please show the thing as code view

Thanks for the quick response. Here the code …

UID: knx:device:ccc7b32f9f:3c211ef4ef
label: KNX Device KG TR Rauchwarnmeldezentrale
thingTypeUID: knx:device
configuration:
  pingInterval: 600
  readInterval: 0
  fetch: false
bridgeUID: knx:ip:ccc7b32f9f
channels:
  - id: CH_KG_Technikraum_RWM_Heartbeats
    channelTypeUID: knx:number
    label: CH KG Technikraum Heartbeat Zähler
    description: ""
    configuration:
      ga: 7.010:<15/7/13
  - id: CH_KG_Technikraum_RWM_Bitmap_aktive_Alarme
    channelTypeUID: knx:number
    label: CH KG Technikraum RWM Bitmap aktive Alarme
    description: ""
    configuration:
      ga: 7.010:<15/7/11
  - id: CH_KG_Technikraum_RWM_Bitmap_aktivierte_Inputs
    channelTypeUID: knx:number
    label: CH KG Technikraum RWM Bitmap aktivierte Eingänge
    description: ""
    configuration:
      ga: 7.010:<15/7/10
  - id: CH_KG_Technikraum_RWM_Bitmap_aktivierten_Outputs
    channelTypeUID: knx:number
    label: CH KG Technikraum RWM Bitmap aktivierter Ausgänge
    description: ""
    configuration:
      ga: 7.010:<15/7/12
  - id: CH_KG_Technikraum_RWM_Spannung_Notfallbatterie
    channelTypeUID: knx:number
    label: CH KG Technikraum RWM Spannung Notfallbatterie
    description: ""
    configuration:
      ga: 9.020<15/7/15
  - id: CH_KG_Technikraum_RWM_Bitmap_Status_AUX
    channelTypeUID: knx:number
    label: CH KG Technikraum RWM Bitmap Status und AUX Eingänge
    description: ""
    configuration:
      ga: 7.010:<15/7/14
  - id: CH_KG_TR_RWM_1
    channelTypeUID: knx:switch
    label: CH KG TR RWM 1
    description: ""
    configuration:
      ga: 1.011:15/7/16
  - id: CH_KG_TR_RWM_2
    channelTypeUID: knx:switch
    label: CH KG TR RWM 2
    description: ""
    configuration:
      ga: 1.011:<15/7/17
  - id: CH_KG_TR_RWM_5
    channelTypeUID: knx:switch
    label: CH KG TR RWM 5
    description: ""
    configuration:
      ga: 1.001:<15/7/20
  - id: CH_KG_TR_RWM_6
    channelTypeUID: knx:switch
    label: CH KG TR RWM 6
    description: ""
    configuration:
      ga: 1.001:<15/7/21
  - id: CH_KG_TR_RWM_7
    channelTypeUID: knx:switch
    label: CH KG TR RWM 7
    description: ""
    configuration:
      ga: 1.001:<15/7/22
  - id: CH_KG_TR_RWM_8
    channelTypeUID: knx:switch
    label: CH KG TR RWM 8
    description: ""
    configuration:
      ga: 1.001:<15/7/23
  - id: CH_KG_TR_RWM_9
    channelTypeUID: knx:switch
    label: CH KG TR RWM 9
    description: ""
    configuration:
      ga: 1.001:<15/7/24
  - id: CH_KG_TR_RWM_10
    channelTypeUID: knx:switch
    label: CH KG TR RWM 10
    description: ""
    configuration:
      ga: 1.001:<15/7/25
  - id: CH_KG_TR_RWM_11
    channelTypeUID: knx:switch
    label: CH KG TR RWM 11
    description: ""
    configuration:
      ga: 1.001:<15/7/26
  - id: CH_KG_TR_RWM_12
    channelTypeUID: knx:switch
    label: CH KG TR RWM 12
    description: ""
    configuration:
      ga: 1.001:<15/7/27
  - id: CH_KG_TR_RWM_3
    channelTypeUID: knx:switch
    label: CH KG TR RWM 3
    description: ""
    configuration:
      ga: 1.001:<15/7/18
  - id: CH_KG_TR_RWM_4
    channelTypeUID: knx:switch
    label: CH KG TR RWM 4
    description: ""
    configuration:
      ga: 1.001:<15/7/19
  - id: CH_KG_TR_RWMZ_Alarm
    channelTypeUID: knx:contact
    label: CH KG TR RWMZ Alarm
    description: ""
    configuration:
      ga: <15/7/28

9.020<15/7/15 is not a valid definition, it lacks the : separator between the DPT and the GA.

This is also in the log:

14:25:02.162 [WARN ] [nal.channel.GroupAddressConfiguration] - Failed parsing channel configuration '9.020<15/7/15'.

Thanks a lot! That was realy great help!

Helmut