For troubleshooting questions, please post in the following format:
Summary
Errors after upgrade from 6.3.3 to 7.1.4
Steps to reproduce
Errors in log files
Expected behavior
Observed behavior
Looking at console logs see below at the start
{“level”:“error”,“msg”:“Could not initiate logging”,“fields”:{“error”:“"invalid config for logging, error creating log target _defFile: error decoding file target options: invalid character ‘m’ in string escape code"”}}
{“level”:“info”,“msg”:“Server is initializing…”,“fields”:{“go_version”:“go1.18.1”}}
{“level”:“info”,“msg”:“Pinging SQL”,“fields”:{“database”:“master”}}
{“level”:“fatal”,“msg”:“Failed to apply database migrations.”,“fields”:{“error”:“"open migrations\mysql: file does not exist"”}}
{“level”:“debug”,“msg”:“Deleting any unused pre-release features”}
@tbielejeski I noticed that your path separators are backwards. They should be / instead of \. Go interprets the \ as an escape code, hence the first error. The same can be seen in open migrations\mysql, there should be a / here.
Runing on native windows OS. Actully I reverted back and did a version by version upgrade process and the data migrations were all performed. so seems a jump from the LTS 6.x to LTS 7.x does not work well