diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-06-18 16:51:16 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-07-10 23:41:15 +0200 |
commit | 2f2beb8029e3d7836eac748a667c4f0c4f61ee02 (patch) | |
tree | c8591f35e0589d9e8582641327133b91e3af4bf4 /.vscode | |
parent | fe866cb7d63dd26ef271157430f9a7b3635ce40d (diff) |
Escape special characters according to influxDB doc
Change-Id: I22724b547033b40b3160c3bbe1b2141349a1ead2
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 35 |
1 files changed, 34 insertions, 1 deletions
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" + } ] } |