File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -481,8 +481,8 @@ impl RpcHandler {
481481 . context ( "Failed to derive app disk key" ) ?;
482482 let req = CertRequest :: builder ( )
483483 . key ( & app_key)
484- . org_name ( "dstack " )
485- . subject ( "dstack App CA" )
484+ . org_name ( "Dstack " )
485+ . subject ( "Dstack App CA" )
486486 . ca_level ( 0 )
487487 . app_id ( app_id)
488488 . special_usage ( "app:ca" )
Original file line number Diff line number Diff line change @@ -128,17 +128,17 @@ impl Keys {
128128 quote_enabled : bool ,
129129 ) -> Result < Self > {
130130 let tmp_ca_cert = CertRequest :: builder ( )
131- . org_name ( "dstack " )
132- . subject ( "dstack Client Temp CA" )
131+ . org_name ( "Dstack " )
132+ . subject ( "Dstack Client Temp CA" )
133133 . ca_level ( 0 )
134134 . key ( & tmp_ca_key)
135135 . build ( )
136136 . self_signed ( ) ?;
137137
138138 // Create self-signed KMS cert
139139 let ca_cert = CertRequest :: builder ( )
140- . org_name ( "dstack " )
141- . subject ( "dstack KMS CA" )
140+ . org_name ( "Dstack " )
141+ . subject ( "Dstack KMS CA" )
142142 . ca_level ( 1 )
143143 . key ( & ca_key)
144144 . build ( )
You can’t perform that action at this time.
0 commit comments