From: Sebastian Wagner Date: Wed, 8 Sep 2021 13:24:58 +0000 (+0200) Subject: mgr/cephadm: osd: prime new daemons with proper daemon_id type X-Git-Tag: v17.1.0~421^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3fa14458a853b68856e45376833e8c12038be7e6;p=ceph.git mgr/cephadm: osd: prime new daemons with proper daemon_id type No one noticed this before, cause it's going to fix itself next time we check teh daemons on that host Signed-off-by: Sebastian Wagner --- diff --git a/src/pybind/mgr/cephadm/services/osd.py b/src/pybind/mgr/cephadm/services/osd.py index c80fbda7d00a..347256f51d55 100644 --- a/src/pybind/mgr/cephadm/services/osd.py +++ b/src/pybind/mgr/cephadm/services/osd.py @@ -134,7 +134,7 @@ class OSDService(CephService): created.append(osd_id) daemon_spec: CephadmDaemonDeploySpec = CephadmDaemonDeploySpec( service_name=service_name, - daemon_id=osd_id, + daemon_id=str(osd_id), host=host, daemon_type='osd', )