Skip to content

Commit bdb92a4

Browse files
authored
Fix typo in db_setup.py
1 parent c6e5202 commit bdb92a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

security-admin/scripts/db_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,13 @@ def apply_patches(self, db_name, db_user, db_password, PATCHES_PATH):
203203
#getting Java patch which needs to be run before this DB patch.
204204
pre_dict = self.get_pre_post_java_patches(prefix_for_preSql_patch)
205205
if pre_dict:
206-
log ("[I] ruunig pre java patch:[{}]".format(pre_dict),"info")
206+
log ("[I] Running Pre Java Patch:[{}]".format(pre_dict),"info")
207207
self.execute_java_patches(xa_db_host, db_user, db_password, db_name, pre_dict)
208208
self.import_db_patches(db_name, db_user, db_password, currentPatch)
209209
#getting Java patch which needs to be run immediately after this DB patch.
210210
post_dict = self.get_pre_post_java_patches(prefix_for_postSql_patch)
211211
if post_dict:
212-
log ("[I] ruunig post java patch:[{}]".format(post_dict),"info")
212+
log ("[I] Running Post Java Patch:[{}]".format(post_dict),"info")
213213
self.execute_java_patches(xa_db_host, db_user, db_password, db_name, post_dict)
214214
self.update_applied_patches_status(db_name, db_user, db_password, "DB_PATCHES")
215215
else:

0 commit comments

Comments
 (0)