From: Dnyaneshwari Date: Fri, 11 Apr 2025 07:44:27 +0000 (+0530) Subject: mgr/dashboard: RGW - Tiering form - secret key fix X-Git-Tag: v20.3.0~106^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7aef50f1f4f28dd183d30f87e15e51d109a44d98;p=ceph.git mgr/dashboard: RGW - Tiering form - secret key fix Fixes: https://tracker.ceph.com/issues/70888 Signed-off-by: Dnyaneshwari Talwekar --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts index d380f08bcc0f6..25c4de89fd797 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts @@ -107,7 +107,7 @@ export class RgwStorageClassFormComponent extends CdForm implements OnInit { this.storageClassForm.get('endpoint').setValue(response.endpoint); this.storageClassForm.get('storage_class').setValue(this.storageClassInfo.storage_class); this.storageClassForm.get('access_key').setValue(response.access_key); - this.storageClassForm.get('secret_key').setValue(response.access_key); + this.storageClassForm.get('secret_key').setValue(response.secret); this.storageClassForm.get('target_path').setValue(response.target_path); this.storageClassForm .get('retain_head_object')