[pve-devel] [PATCH manager 3/3] api/ceph: actually use imported file_get_contents
Thomas Lamprecht
t.lamprecht at proxmox.com
Tue Nov 20 09:17:51 CET 2018
Signed-off-by: Thomas Lamprecht <t.lamprecht at proxmox.com>
---
PVE/API2/Ceph.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/API2/Ceph.pm b/PVE/API2/Ceph.pm
index cd62c040..dd7f2016 100644
--- a/PVE/API2/Ceph.pm
+++ b/PVE/API2/Ceph.pm
@@ -688,7 +688,7 @@ __PACKAGE__->register_method ({
PVE::CephTools::check_ceph_inited();
my $path = PVE::CephTools::get_config('pve_ceph_cfgpath');
- return PVE::Tools::file_get_contents($path);
+ return file_get_contents($path);
}});
@@ -1923,7 +1923,7 @@ __PACKAGE__->register_method ({
my $bindata = $rados->mon_command({ prefix => 'osd getcrushmap', format => 'plain' });
PVE::Tools::file_set_contents($mapfile, $bindata);
run_command(['crushtool', '-d', $mapfile, '-o', $mapdata]);
- $txt = PVE::Tools::file_get_contents($mapdata);
+ $txt = file_get_contents($mapdata);
};
my $err = $@;
--
2.19.1
More information about the pve-devel
mailing list