Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit c432302

Browse files
committed
Review comments addressed
1 parent 6ed313c commit c432302

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pluginops/pluginops.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def stop_staging(staged_source, repository, source_config):
229229
logger.debug("Error is : "+error)
230230
raise LinkingException("Exception while stopping staging:"+error)
231231
else:
232-
logger.debug("Stop Staging - Successful: ")
232+
logger.debug("Stop Staging - Successful")
233233
#TODO: Integration
234234

235235
##################################################
@@ -318,7 +318,7 @@ def linked_pre_snapshot(staged_source, repository, source_config, snapshot_param
318318
logger.error(err)
319319
raise err
320320
else:
321-
logger.debug("Pre-Snapshot/Restore successful ")
321+
logger.debug("Pre-Snapshot/Restore successful")
322322
logger.debug("Restoring Backup to Stage")
323323
restore_script = pkgutil.get_data('resources', 'restore_stage.sh')
324324
result = libs.run_bash(staged_source.staged_connection, restore_script,environment_vars,check=False)
@@ -328,7 +328,7 @@ def linked_pre_snapshot(staged_source, repository, source_config, snapshot_param
328328
logger.debug(std_err)
329329
logger.debug(exit_code)
330330
if exit_code == 0:
331-
logger.debug("Creation of Staging DB(Pre-Snapshot) successful.")
331+
logger.debug("Creation of Staging DB(Pre-Snapshot) successful")
332332
else:
333333
logger.debug("There was an error while creating the staging DB.Check error.log for details.")
334334
err = utils.process_exit_codes(exit_code,"DBLINK",std_err)
@@ -365,7 +365,7 @@ def linked_pre_snapshot(staged_source, repository, source_config, snapshot_param
365365
logger.error(err)
366366
raise err
367367
else:
368-
logger.debug("Pre-Snapshot/Restore_DB successful ")
368+
logger.debug("Pre-Snapshot/Restore_DB successful")
369369
else:
370370
# Simple Tablespace Option is hidden from the plugin.
371371
# This section will not get triggered until the option gets added back in schema.json

0 commit comments

Comments
 (0)