Skip to content

Commit 4d96b2b

Browse files
authored
Merge pull request ceph#56504 from rhcs-dashboard/replace-active_mds-active_nfs
mgr/dashboard: s/active_mds/active_nfs in fs attach form Reviewed-by: Ankush Behl <[email protected]>
2 parents 671d3b6 + 5f97e4e commit 4d96b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class CephfsMountDetailsComponent implements OnInit, OnDestroy {
2121
ngOnInit(): void {
2222
this.mount = `sudo mount -t ceph <CLIENT_USER>@${this.mountData?.fsId}.${this.mountData?.fsName}=${this.mountData?.rootPath} ${this.MOUNT_DIRECTORY}`;
2323
this.fuse = `sudo ceph-fuse ${this.MOUNT_DIRECTORY} -r ${this.mountData?.rootPath} --client_mds_namespace=${this.mountData?.fsName}`;
24-
this.nfs = `sudo mount -t nfs -o port=<PORT> <IP of active_mds daemon>:<export_name> ${this.MOUNT_DIRECTORY}`;
24+
this.nfs = `sudo mount -t nfs -o port=<PORT> <IP of active_nfs daemon>:<export_name> ${this.MOUNT_DIRECTORY}`;
2525
}
2626

2727
ngOnDestroy(): void {

0 commit comments

Comments
 (0)