Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
youfanx committed Aug 11, 2023
1 parent d7fe2cf commit 5ecefb1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.rockylomo</groupId>
<artifactId>rx</artifactId>
<version>2.19.4</version>
<version>2.19.10</version>
</parent>
<artifactId>agent</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion daemon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.rockylomo</groupId>
<artifactId>rx</artifactId>
<version>2.19.4</version>
<version>2.19.10</version>
</parent>
<artifactId>daemon</artifactId>

Expand Down
6 changes: 4 additions & 2 deletions rxlib/src/main/java/org/rx/spring/MxController.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ public Object health(HttpServletRequest request) {
SocksContext.omegax(Reflects.convertQuietly(request.getParameter("p"), Integer.class, 22));
return rt;
case 10:
DateTime st = DateTime.valueOf(request.getParameter("startTime"));
DateTime et = DateTime.valueOf(request.getParameter("endTime"));
String startTime = request.getParameter("startTime");
DateTime st = startTime == null ? null : DateTime.valueOf(startTime);
String endTime = request.getParameter("endTime");
DateTime et = endTime == null ? null : DateTime.valueOf(endTime);
String level = request.getParameter("level");
String kw = request.getParameter("keyword");
Boolean newest = Reflects.changeType(request.getParameter("newest"), Boolean.class);
Expand Down

0 comments on commit 5ecefb1

Please sign in to comment.