From 90004119afd235b7c7c6d784b217f9a7684e420d Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 11 Jan 2021 16:35:44 +0530 Subject: [PATCH] Ensure that verbose logs should be visible for Utility(Backup, Maintenance) jobs. Fixes #6140 --- docs/en_US/release_notes_4_30.rst | 1 + web/pgadmin/misc/bgprocess/processes.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_4_30.rst b/docs/en_US/release_notes_4_30.rst index d8e51d790..c47a66864 100644 --- a/docs/en_US/release_notes_4_30.rst +++ b/docs/en_US/release_notes_4_30.rst @@ -36,3 +36,4 @@ Bug fixes | `Issue #6084 `_ - Fixed TypeError exception in schema diff when selected any identical object. | `Issue #6096 `_ - Updated deployment documentation, refer correctly to uWSGI where Gunicorn had been referenced. | `Issue #6121 `_ - Fixed an issue where the database list in the new connection window is not visible. +| `Issue #6140 `_ - Ensure that verbose logs should be visible for Utility(Backup, Maintenance) jobs. diff --git a/web/pgadmin/misc/bgprocess/processes.py b/web/pgadmin/misc/bgprocess/processes.py index ed359c7c3..2c209b76a 100644 --- a/web/pgadmin/misc/bgprocess/processes.py +++ b/web/pgadmin/misc/bgprocess/processes.py @@ -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 = []