Ensure that utility existence check should work for schema and

other child objects while taking Backup/Restore. Fixes #3722
This commit is contained in:
Akshay Joshi
2018-10-25 18:55:21 +05:30
parent 6ddab02769
commit 0d5a6eeeff
3 changed files with 6 additions and 3 deletions

View File

@@ -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({});

View File

@@ -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({});