-
-
Notifications
You must be signed in to change notification settings - Fork 436
Closed
Labels
Milestone
Description
Seems like this was reported before in #864
After migration form 0.8x to 1.1.38 we had some long OID's that were being cut off in the snmp_index field, we have altered them in the host_snmp_cache now:
- snmp_index varchar(191) NOT NULL default '',
+ snmp_index varchar(255) NOT NULL default '',
- KEY snmp_index (snmp_index),
+ KEY snmp_index (snmp_index(191)),
I this is something likely to happen to other people. Probably caused by the fixes for the uft8mb4 compatibility.
Reactions are currently unavailable