]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: s/active_mds/active_nfs in fs attach form 56504/head
authorNizamudeen A <nia@redhat.com>
Wed, 27 Mar 2024 05:12:39 +0000 (10:42 +0530)
committerNizamudeen A <nia@redhat.com>
Wed, 27 Mar 2024 05:12:39 +0000 (10:42 +0530)
Fixes: https://tracker.ceph.com/issues/65173
Signed-off-by: Nizamudeen A <nia@redhat.com>
src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts

index 76fd81aa9413fbca91e54458d21e045c2cdf9ad8..843b000b2fa12fbdcf19b716d27a61cb2451c089 100644 (file)
@@ -21,7 +21,7 @@ export class CephfsMountDetailsComponent implements OnInit, OnDestroy {
   ngOnInit(): void {
     this.mount = `sudo mount -t ceph <CLIENT_USER>@${this.mountData?.fsId}.${this.mountData?.fsName}=${this.mountData?.rootPath} ${this.MOUNT_DIRECTORY}`;
     this.fuse = `sudo ceph-fuse  ${this.MOUNT_DIRECTORY} -r ${this.mountData?.rootPath} --client_mds_namespace=${this.mountData?.fsName}`;
-    this.nfs = `sudo mount -t nfs -o port=<PORT> <IP of active_mds daemon>:<export_name> ${this.MOUNT_DIRECTORY}`;
+    this.nfs = `sudo mount -t nfs -o port=<PORT> <IP of active_nfs daemon>:<export_name> ${this.MOUNT_DIRECTORY}`;
   }
 
   ngOnDestroy(): void {