InfluxDB persistence complains on "historic" query when persisted item (and measurement) was renamed

After manipulating the `JSON storage while I forgot to shut down openHAB, I keep seeing errors from the InfluxDB 1.8 persistence service complaining about non existing Items in the persistence service (which is obvious since I renamed the Item, merged the old measurements into the new measurement and then deleted the old measurement from the InfluxDB 1.8 storage…

2021-06-28 12:02:19.629 [DEBUG] [.influxdb.InfluxDBPersistenceService] - Got a query for historic points!

2021-06-28 12:02:19.631 [TRACE] [.influxdb.InfluxDBPersistenceService] - Filter: itemname: Wx_OWM_Current_Temperature, ordering: ASCENDING, state: null, operator: EQ, getBeginDate: 2021-06-27T12:02:19.629658+02:00[Europe/Brussels], getEndDate: null, getPageSize: 2147483647, getPageNumber: 0

2021-06-28 12:02:19.633 [TRACE] [.influxdb.InfluxDBPersistenceService] - Query SELECT “value”::field,“item”::tag FROM autogen.Wx_OWM_Current_Temperature WHERE time >= ‘2021-06-27T10:02:19.629658Z’ ORDER BY time ASC;

2021-06-28 12:02:19.652 [TRACE] [rnal.influx1.InfluxDB1RepositoryImpl] - series Series [name=Wx_OWM_Current_Temperature, tags=null, columns=[time, value, item], values=[[1.624788242547E12, 23.43, OneCallAPIweatherandforecast_Current_Temperature], [1.62478884354E12, 23.51, OneCallAPIweatherandforecast_Current_Temperature], [1.624789444323E12, 23.95, OneCallAPIweatherandforecast_Current_Temperature], <<>>, [1.624803937312E12, 24.83, Wx_OWM_Current_Temperature], [1.624804539119E12, 22.81, Wx_OWM_Current_Temperature], [1.624805140157E12, 22.34, Wx_OWM_Current_Temperature], [1.624805355261E12, 21.98, Wx_OWM_Current_Temperature], [1.624805956665E12, 21.57, Wx_OWM_Current_Temperature], [1.62480655757E12, 21.09, Wx_OWM_Current_Temperature], [1.624807158406E12, 21.01, Wx_OWM_Current_Temperature], [1.624807764624E12, 21.07, <<>> Wx_OWM_Current_Temperature], [1.624871533474E12, 20.92, Wx_OWM_Current_Temperature], [1.624872735729E12, 20.81, Wx_OWM_Current_Temperature], [1.624873336856E12, 20.71, Wx_OWM_Current_Temperature], [1.624873938119E12, 20.64, Wx_OWM_Current_Temperature], [1.624874539369E12, 20.67, Wx_OWM_Current_Temperature]]]
2021-06-28 12:02:19.655 [TRACE] [rnal.influx1.InfluxDB1RepositoryImpl] - columns [time, value, item]
2021-06-28 12:02:19.657 [TRACE] [rnal.influx1.InfluxDB1RepositoryImpl] - adding historic item OneCallAPIweatherandforecast_Current_Temperature: time 2021-06-27T10:04:02.547Z value 23.43
2021-06-28 12:02:19.659 [TRACE] [rnal.influx1.InfluxDB1RepositoryImpl] - adding historic item OneCallAPIweatherandforecast_Current_Temperature: time 2021-06-27T10:14:03.540Z value 23.51
2021-06-28 12:02:19.662 [TRACE] [rnal.influx1.InfluxDB1RepositoryImpl] - adding historic item OneCallAPIweatherandforecast_Current_Temperature: time 2021-06-27T10:24:04.323Z value 23.95

[…etc]

2021-06-28 12:02:19.877 [INFO ] [b.internal.InfluxDBStateConvertUtils] - Could not find item ‘OneCallAPIweatherandforecast_Current_Temperature’ in registry
2021-06-28 12:02:19.878 [INFO ] [b.internal.InfluxDBStateConvertUtils] - Could not find item ‘OneCallAPIweatherandforecast_Current_Temperature’ in registry
2021-06-28 12:02:19.880 [INFO ] [b.internal.InfluxDBStateConvertUtils] - Could not find item ‘OneCallAPIweatherandforecast_Current_Temperature’ in registry

Either there’s a problem with a hidden “backlog” of “cache”, or there’s a problem with the annotations in the openHAB measurement (which might contain reference to the “old” item name…

Does anyone know how this can be fixed?