mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that utility existence check should work for schema and
other child objects while taking Backup/Restore. Fixes #3722
This commit is contained in:
@@ -39,7 +39,8 @@ export class BackupDialog extends Dialog {
|
||||
return;
|
||||
}
|
||||
|
||||
const baseUrl = this.url_for_utility_exists(serverInformation._id, params);
|
||||
var sid = serverInformation._type == 'database' ? serverInformation._pid : serverInformation._id;
|
||||
const baseUrl = this.url_for_utility_exists(sid, params);
|
||||
// Check pg_dump or pg_dumpall utility exists or not.
|
||||
let that = this;
|
||||
let service = axios.create({});
|
||||
|
||||
@@ -39,7 +39,8 @@ export class RestoreDialog extends Dialog {
|
||||
return;
|
||||
}
|
||||
|
||||
const baseUrl = this.url_for_utility_exists(serverInformation._id);
|
||||
var sid = serverInformation._type == 'database' ? serverInformation._pid : serverInformation._id;
|
||||
const baseUrl = this.url_for_utility_exists(sid);
|
||||
// Check pg_restore utility exists or not.
|
||||
let that = this;
|
||||
let service = axios.create({});
|
||||
|
||||
Reference in New Issue
Block a user