Skip to content

Commit 32e6de7

Browse files
authored
Update DB migrator script to next branch 202505 (#3664)
Update DB migrator script to next branch 202505
1 parent 8d00aba commit 32e6de7

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

scripts/db_migrator.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(self, namespace, socket=None):
5959
none-zero values.
6060
build: sequentially increase within a minor version domain.
6161
"""
62-
self.CURRENT_VERSION = 'version_202411_01'
62+
self.CURRENT_VERSION = 'version_202505_01'
6363

6464
self.TABLE_NAME = 'VERSIONS'
6565
self.TABLE_KEY = 'DATABASE'
@@ -1237,10 +1237,18 @@ def version_202405_01(self):
12371237

12381238
def version_202411_01(self):
12391239
"""
1240-
Version 202411_01, this version should be the final version for
1241-
master branch until 202411 branch is created.
1240+
Version 202411_01.
12421241
"""
12431242
log.log_info('Handling version_202411_01')
1243+
self.set_version('version_202505_01')
1244+
return 'version_202505_01'
1245+
1246+
def version_202505_01(self):
1247+
"""
1248+
Version 202505_01, this version should be the final version for
1249+
master branch until 202505 branch is created.
1250+
"""
1251+
log.log_info('Handling version_202505_01')
12441252
return None
12451253

12461254
def get_version(self):

0 commit comments

Comments
 (0)