Skip to content

Commit

Permalink
Fix WFS exception to not include query parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski committed Sep 13, 2024
1 parent e082e26 commit 21b3e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tds/src/main/java/thredds/server/wfs/WFSController.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ private WFSExceptionWriter checkParametersForError(String request, String versio
// Last check to see if typenames is specified, must be for GetFeature, DescribeFeatureType
if (typeName == null) {
return new WFSExceptionWriter(
"WFS server error. For the specifed request, parameter typename or typenames must be specified.", request,
"MissingParameterValue");
"WFS server error. For the specifed request, parameter typename or typenames must be specified.",
"request", "MissingParameterValue");
}
}

Expand Down

0 comments on commit 21b3e2c

Please sign in to comment.