Skip to content

Commit

Permalink
Updates pth_03 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
StrongestNumber9 authored Sep 16, 2024
1 parent 573b91b commit 48ce0f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<teragrep.dpf_03.version>10.0.1</teragrep.dpf_03.version>
<teragrep.jpr_01.version>3.1.1</teragrep.jpr_01.version>
<teragrep.jue_01.version>0.4.3</teragrep.jue_01.version>
<teragrep.pth_03.version>6.1.4</teragrep.pth_03.version>
<teragrep.pth_03.version>8.1.0</teragrep.pth_03.version>
<teragrep.pth_06.version>3.1.2</teragrep.pth_06.version>
<teragrep.rlp_01.version>4.0.1</teragrep.rlp_01.version>
<teragrep.rlp_03.version>1.7.6</teragrep.rlp_03.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ public Node visitT_syslogModeParameter(DPLParser.T_syslogModeParameterContext ct
host = portParamCtx.getText();
}

if (hostParamCtx.COMMAND_TERAGREP_MODE_PORT_NUM() != null) {
port = Integer.parseInt(hostParamCtx.COMMAND_TERAGREP_MODE_PORT_NUM().getText());
if (hostParamCtx.COMMAND_TERAGREP_IP_MODE_PORT_NUM() != null) {
port = Integer.parseInt(hostParamCtx.COMMAND_TERAGREP_IP_MODE_PORT_NUM().getText());
}
}

Expand Down

0 comments on commit 48ce0f2

Please sign in to comment.