Ensure that verbose logs should be visible for Utility(Backup, Maintenance) jobs. Fixes #6140
parent
f8497d4e7a
commit
90004119af
|
|
@ -36,3 +36,4 @@ Bug fixes
|
|||
| `Issue #6084 <https://redmine.postgresql.org/issues/6084>`_ - Fixed TypeError exception in schema diff when selected any identical object.
|
||||
| `Issue #6096 <https://redmine.postgresql.org/issues/6096>`_ - Updated deployment documentation, refer correctly to uWSGI where Gunicorn had been referenced.
|
||||
| `Issue #6121 <https://redmine.postgresql.org/issues/6121>`_ - Fixed an issue where the database list in the new connection window is not visible.
|
||||
| `Issue #6140 <https://redmine.postgresql.org/issues/6140>`_ - Ensure that verbose logs should be visible for Utility(Backup, Maintenance) jobs.
|
||||
|
|
|
|||
|
|
@ -426,7 +426,7 @@ class BatchProcess(object):
|
|||
def status(self, out=0, err=0):
|
||||
import re
|
||||
|
||||
ctime = get_current_time(format='%Y%m%d%H%M%S%f')
|
||||
ctime = get_current_time(format='%y%m%d%H%M%S%f')
|
||||
|
||||
stdout = []
|
||||
stderr = []
|
||||
|
|
|
|||
Loading…
Reference in New Issue