1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-10 23:29:34 +02:00

fix travis

This commit is contained in:
Grigory Smolkin 2020-05-23 15:07:12 +03:00
parent 4dc3ab8901
commit 10ca6356b7
2 changed files with 3 additions and 2 deletions

View File

@ -1109,7 +1109,8 @@ do_archive_get(InstanceConfig *instance, const char *prefetch_dir_arg,
{
/* discard prefetch */
// n_fetched = 0;
pgut_rmtree(prefetch_dir, false, false);
// pgut_rmtree(prefetch_dir, false, false);
rmtree(prefetch_dir, false);
}
}
else

View File

@ -985,7 +985,7 @@ do_delete_instance(void)
parray_free(backup_list);
/* Delete all wal files. */
pgut_rmtree(arclog_path, false, true);
rmtree(arclog_path, false);
/* Delete backup instance config file */
join_path_components(instance_config_path, backup_instance_path, BACKUP_CATALOG_CONF_FILE);