Show More
@@ -201,7 +201,7 b' class DbManage(object):' | |||
|
201 | 201 | f'version {curr_version} to version {__dbversion__}') |
|
202 | 202 | |
|
203 | 203 | # CALL THE PROPER ORDER OF STEPS TO PERFORM FULL UPGRADE |
|
204 |
_step = |
|
|
204 | final_step = 'latest' | |
|
205 | 205 | for step in upgrade_steps: |
|
206 | 206 | notify(f'performing upgrade step {step}') |
|
207 | 207 | time.sleep(0.5) |
@@ -210,10 +210,10 b' class DbManage(object):' | |||
|
210 | 210 | self.sa.rollback() |
|
211 | 211 | notify(f'schema upgrade for step {step} completed') |
|
212 | 212 | |
|
213 | _step = step | |
|
213 | final_step = step | |
|
214 | 214 | |
|
215 | 215 | self.run_post_migration_tasks() |
|
216 | notify(f'upgrade to version {step} successful') | |
|
216 | notify(f'upgrade to version {final_step} successful') | |
|
217 | 217 | |
|
218 | 218 | def fix_repo_paths(self): |
|
219 | 219 | """ |
General Comments 0
You need to be logged in to leave comments.
Login now