Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed db_migrator version 4_0_3 and 4_0_4 and added missing log info to version 4_0_1 #2912

Merged
merged 4 commits into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scripts/db_migrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,8 @@ def version_4_0_1(self):
"""
Version 4_0_1.
"""
log.log_info('Handling version_4_0_1')

self.migrate_feature_timer()
self.set_version('version_4_0_2')
return 'version_4_0_2'
Expand All @@ -1034,6 +1036,9 @@ def version_4_0_3(self):
Version 4_0_3.
"""
log.log_info('Handling version_4_0_3')

# Updating DNS nameserver
self.migrate_dns_nameserver()
self.set_version('version_4_0_4')
return 'version_4_0_4'

Expand All @@ -1043,8 +1048,6 @@ def version_4_0_4(self):
This is the latest version for master branch
"""
log.log_info('Handling version_4_0_4')
# Updating DNS nameserver
self.migrate_dns_nameserver()
return None

def get_version(self):
Expand Down
Loading