diff options
author | martinko | 2014-10-08 08:44:04 +0000 |
---|---|---|
committer | martinko | 2014-10-08 08:44:04 +0000 |
commit | d66cbbb668665fee17b937c47e6b58ce9ef82706 (patch) | |
tree | 016531c5f1d40038c845a8cff2e80f65cdd358fd /python/walmgr.py | |
parent | c673f4c93725d6dcf071404f0ef84e9a0ea6b7ae (diff) | |
parent | 11f9c011a507a51d25e64573150e61a979f82d1c (diff) |
Merge branch 'release/3.2.3'3.2.3
Diffstat (limited to 'python/walmgr.py')
-rwxr-xr-x | python/walmgr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/walmgr.py b/python/walmgr.py index 2918b067..8de02bd4 100755 --- a/python/walmgr.py +++ b/python/walmgr.py @@ -1821,7 +1821,7 @@ STOP TIME: %(stop_time)s self.log.info("%s: not found (ignored)", srcname) # remove PG_RECEIVEXLOG file if it's present - if os.path.isfile(prxlogfile): + if os.path.isfile(prxlogfile) and not srcname.endswith('.history'): os.remove(prxlogfile) sys.exit(1) |