Skip to content

Commit

Permalink
feat: modify jsqlparser version (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanni97 authored Sep 5, 2024
1 parent accb071 commit 400e708
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ public void regenerateOperationName(Mocker mocker) {
if (operationNames.isEmpty()) {
return;
}
// sort operation name
Collections.sort(operationNames);

mocker.setOperationName(StringUtils.join(operationNames, ";"));

MDCTracer.clear();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public Response viewRecord(@RequestBody ViewRecordRequestType requestType,
@PostMapping(value = "/cacheLoad")
@ResponseBody
public Response cacheLoad(@RequestBody QueryMockCacheRequestType requestType,
@RequestHeader(name = AREX_AGENT_VERSION) String agentVersion) {
@RequestHeader(name = AREX_AGENT_VERSION, required = false) String agentVersion) {
if (requestType == null) {
return ResponseUtils.requestBodyEmptyResponse();
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
</profiles>

<properties>
<revision>1.3.1</revision>
<revision>1.3.2</revision>
<commons-lang3.version>3.3.2</commons-lang3.version>
<java.version>1.8</java.version>

Expand All @@ -446,7 +446,7 @@
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
<maven-war-plugin.version>3.0.0</maven-war-plugin.version>
<jsqlparser.version>4.9</jsqlparser.version>
<jsqlparser.version>4.5</jsqlparser.version>
<maven.artifact.version>3.8.5</maven.artifact.version>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.source.skip>false</maven.source.skip>
Expand Down

0 comments on commit 400e708

Please sign in to comment.