From 2f2beb8029e3d7836eac748a667c4f0c4f61ee02 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 18 Jun 2018 16:51:16 +0200 Subject: Escape special characters according to influxDB doc Change-Id: I22724b547033b40b3160c3bbe1b2141349a1ead2 Signed-off-by: Sebastien Douheret --- .vscode/launch.json | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index 03c2de7..06f46b8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -60,6 +60,39 @@ "ignoreFailures": true } ] - } + }, + { + "name": "harvester (port 1234)", + "type": "cppdbg", + "request": "launch", + "program": "/opt/AGL/bin/afb-daemon", + "args": [ + "--port=1234", + "--name=afbd-harvester", + "--workdir=${workspaceRoot}/build/package/", + "--ldpaths=lib", + "--roothttp=.", + "--token=", + "--tracereq=common", + "--ws-server=unix:/tmp/harvester", + "-vvv" + ], + "additionalSOLibSearchPath": "${workspaceRoot}/build/package/lib", + "stopAtEntry": false, + "cwd": "${workspaceRoot}/build/package", + "environment": [ + ], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ], + "showDisplayString": true, + "preLaunchTask": "Build" + } ] } -- cgit 1.2.3-korg