mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Fleet] fix encryption key less message signing (#153713)
This commit is contained in:
parent
fd8508a4f0
commit
a38dfe96c9
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ export async function getFullAgentPolicy(
|
|||
|
||||
// populate protection and signed properties
|
||||
const messageSigningService = appContextService.getMessageSigningService();
|
||||
if (messageSigningService?.isEncryptionAvailable && fullAgentPolicy.agent) {
|
||||
if (messageSigningService && fullAgentPolicy.agent) {
|
||||
const publicKey = await messageSigningService.getPublicKey();
|
||||
|
||||
fullAgentPolicy.agent.protection = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue