Skip to content

Commit

Permalink
bugfix: Linux Agent dbgipc 配置渲染值有误 (fixed #973)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhuoZhuoCrayon committed Aug 2, 2022
1 parent 77027ed commit 856c0f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ def generate_gse_config(
path_sep = constants.LINUX_SEP
dataipc = agent_config.get("dataipc", "/var/run/ipc.state.report")
pluginipc = path_sep.join([setup_path, "agent", "data", "ipc.plugin.manage"])
dbgipc = agent_config.get("dbgipc", f"{settings.GSE_AGENT_HOME}/agent/data/ipc.dbg.agent")
dbgipc = agent_config.get("dbgipc", path_sep.join([setup_path, "agent", "data", "ipc.dbg.agent"]))

template = {}
context = {}
Expand Down
3 changes: 3 additions & 0 deletions dev_log/2.2.19/crayon_202208011750.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfix:
- "Linux Agent dbgipc 配置渲染值有误 (fixed #973)"

0 comments on commit 856c0f3

Please sign in to comment.