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 12, 2024
1 parent 95cf54e commit e2af970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tds/src/main/java/thredds/server/wfs/WFSController.java
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ 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,
"WFS server error. For the specifed request, parameter typename or typenames must be specified.", "request",
"MissingParameterValue");
}
}
Expand Down

0 comments on commit e2af970

Please sign in to comment.