From 55df06b2e84fa5d71a1cc0e78dbccab5db29d968 Mon Sep 17 00:00:00 2001 From: Dmitry Borodaenko Date: Mon, 31 Mar 2014 11:33:09 -0700 Subject: [PATCH] do not create radosgw region map in post-deploy RadosGW region map may intermittently get corrupted when it is created during post-deployment, leading to RadosGW being unable to start. Change-Id: I9587b983ad50d74d22eb157b5d98a6f709e58b23 Related-bug: #1287166 --- lib/astute/orchestrator.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/astute/orchestrator.rb b/lib/astute/orchestrator.rb index 8170f622..d4e1ac25 100644 --- a/lib/astute/orchestrator.rb +++ b/lib/astute/orchestrator.rb @@ -290,9 +290,6 @@ module Astute cmd = <<-RESTART_RADOSGW (test -f /etc/init.d/ceph-radosgw && /etc/init.d/ceph-radosgw restart) || (test -f /etc/init.d/radosgw && /etc/init.d/radosgw restart); - radosgw-admin region-map get > /dev/null || radosgw-admin region-map update > /dev/null; - (test -f /etc/init.d/ceph-radosgw && /etc/init.d/ceph-radosgw restart) || - (test -f /etc/init.d/radosgw && /etc/init.d/radosgw restart); RESTART_RADOSGW cmd.tr!("\n"," ")