Skip to content

Commit f9a47a2

Browse files
authored
Merge pull request ceph#62776 from rhcs-dashboard/tiering-secretKey-fix
mgr/dashboard: RGW - Tiering form - secret key fix Reviewed-by: Afreen Misbah <[email protected]> Reviewed-by: Aashish Sharma <[email protected]>
2 parents 08c478d + 7aef50f commit f9a47a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-storage-class-form/rgw-storage-class-form.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export class RgwStorageClassFormComponent extends CdForm implements OnInit {
107107
this.storageClassForm.get('endpoint').setValue(response.endpoint);
108108
this.storageClassForm.get('storage_class').setValue(this.storageClassInfo.storage_class);
109109
this.storageClassForm.get('access_key').setValue(response.access_key);
110-
this.storageClassForm.get('secret_key').setValue(response.access_key);
110+
this.storageClassForm.get('secret_key').setValue(response.secret);
111111
this.storageClassForm.get('target_path').setValue(response.target_path);
112112
this.storageClassForm
113113
.get('retain_head_object')

0 commit comments

Comments
 (0)