forked from p15670423/monkey
Agent: Use SecretStr and SecretBytes instead of SecretField
SecretField is a base type for secrets, but it doesn't seem to be exported. When the agent is ran, this import fails
This commit is contained in:
parent
472ca382f1
commit
9fb2804202
|
@ -1,6 +1,6 @@
|
|||
import json
|
||||
|
||||
from pydantic import BaseModel, SecretField
|
||||
from pydantic import BaseModel, SecretBytes, SecretStr
|
||||
|
||||
from common import OperatingSystem
|
||||
|
||||
|
@ -11,6 +11,6 @@ class TelemetryJSONEncoder(json.JSONEncoder):
|
|||
return obj.name
|
||||
if issubclass(type(obj), BaseModel):
|
||||
return obj.dict(simplify=True)
|
||||
if issubclass(type(obj), SecretField):
|
||||
if issubclass(type(obj), (SecretStr, SecretBytes)):
|
||||
return obj.get_secret_value()
|
||||
return json.JSONEncoder.default(self, obj)
|
||||
|
|
Loading…
Reference in New Issue