WARNING 9: Restore file '.\send.json' contains obsolete name 'fast_power_cycle_disable' #54
-
I'm reading json from a Shelly 2.5 with version 12.0.2.3. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
means what? Shelly with 12.0.2.3 or Shelly with version ??? using decode-config v12.0.2.3? can't be reproduced using decode-config.py v12.0.2.3 [f6fe949], pls fill out issue template for more information. Describe the bugA clear and concise description of what the bug is. To ReproduceSteps to reproduce the behavior: Expected behaviorA clear and concise description of what you expected to happen. Version InformationPlease complete the following information >>> paste output here <<<
System' information of your Tasmota dataAppend >>> paste output here <<<
Additional contextAdd any other context about the problem here. |
Beta Was this translation helpful? Give feedback.
-
Sorry, I found the error, there was an error in my json file. Many thanks for your effort. |
Beta Was this translation helpful? Give feedback.
-
I have the same issue, but a different parameter:
I tried editing the JSON file to remove |
Beta Was this translation helpful? Give feedback.
-
(And yes: this was on 6.5.0 about an hour ago. I backed up, |
Beta Was this translation helpful? Give feedback.
-
Without knowing the version config comes from and version of restore to: Only few (hand full) parameter from config becomes obsolete or renamed during different tasmota version history. Either rename the variable or ignore it during import with |
Beta Was this translation helpful? Give feedback.
-
In my case:
How does a user know which have been renamed, which have been depreciated, and which will have important data dropped when using |
Beta Was this translation helpful? Give feedback.
-
./decode-config.py -s Config_12.2.0.dmp -i Config_6.5.0.json -w Load data from file 'Config_12.2.0.dmp'
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'display_dimmer', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'drivers', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhtoday', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhtotal', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhyesterday', skipped
Restore successful to file 'Config_12.2.0.dmp' from './Config_6.5.0.json' the magic parameter to try these all without writing anything is ./decode-config.py -s Config_12.2.0.dmp -i Config_6.5.0.json -w --dry-run Load data from file 'Config_12.2.0.dmp'
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'display_dimmer', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'drivers', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhtoday', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhtotal', skipped
WARNING 9: Restore file './Config_6.5.0.json' contains obsolete name 'energy_kWhyesterday', skipped
WARNING 9 (@5297): file './Config_6.5.0.json' array 'energy_power_delta' couldn't restore, format has changed! Restore value contains <class 'int'> but an array of size [3] is expected
WARNING 9 (@5283): file './Config_6.5.0.json' array 'sensors[3]' exceeds max number of elements [2]
WARNING 9 (@5283): file './Config_6.5.0.json' array 'sensors[10]' exceeds max number of elements [4]
WARNING 9 (@5297): file './Config_6.5.0.json' array 'sensors' couldn't restore, format has changed! Restore value contains <class 'str'> but an array of size [4] is expected
WARNING 9 (@5283): file './Config_6.5.0.json' array 'sensors[10]' exceeds max number of elements [4]
WARNING 9 (@5297): file './Config_6.5.0.json' array 'sensors' couldn't restore, format has changed! Restore value contains <class 'str'> but an array of size [4] is expected
WARNING 9: Data incompatibility: File 'Config_12.2.0.dmp' hardware is 'ESP32 (excl S3/S2/C3)', restore file './Config_6.5.0.json' is for hardware 'ESP82'
Restore skipped, configuration data unchanged |
Beta Was this translation helpful? Give feedback.
-w
always displays what's skipped:the magic…