[#330] Improve CURL generation and fix Boto3 logging

Signed-off-by: Kirill Sosnovskikh <k.sosnovskikh@yadro.com>
This commit is contained in:
Kirill Sosnovskikh 2024-12-02 14:18:17 +03:00
parent 7d6768c83f
commit 0e040d2722
2 changed files with 76 additions and 27 deletions

View file

@ -80,6 +80,9 @@ def log_command_execution(cmd: str, output: Union[str, dict], params: Optional[d
if not params:
params = {}
if params.get("Body") and len(params.get("Body")) > 1000:
params["Body"] = "<large text data>"
output_params = params
try: