Command with double braces getting incorrectly executed on agent hostIssue Command with double braces getting incorrectly executed on agent host Steps to reproduce: 1. Setup a Linux agent host2. Try executing following command using a check definition sudo docker version --format '{{.Server.Version}}' (this is a command from the docker discovery pattern to extract docker version) 3. Notice that the check definition fails with message "Check failed to run. Response code: 3error while substituting check tokens: command: unmatched token: template: command:1:38: executing "command" at <.Server.Version>: map has no entry for key "Server"" ReleaseAgent installer version: agent-client-collector-3.1.0-20221025ACC-F: 3.1.0.202210299072709CauseThis seemed to indicate that the double braces in the actual command might be misinterpreted by agent by its token replacement mechanism Resolution1. Installed 3.1.0 acc-f plugin on instance2. Installed agent on host using agent-client-collector-3.1.0-20221025 installers3. Created a test check with command having double braces and executed the same on host **The flag name in the check is disable_token_replacement and needs to be set to true to disable the token replacement on an adhoc check.