Skip to content

Commit fa3f9a1

Browse files
committedMar 20, 2015
Redo "server: stop processing after 'no REQUEST' exception (fixes #11543)" from 1d3f8a7
- Accidentally removed during merge conflict in 670719c?
1 parent 71d0c3f commit fa3f9a1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/server/qgswmsserver.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ void QgsWMSServer::executeRequest()
112112
{
113113
QgsDebugMsg( "unable to find 'REQUEST' parameter, exiting..." );
114114
mRequestHandler->setServiceException( QgsMapServiceException( "OperationNotSupported", "Please check the value of the REQUEST parameter" ) );
115+
cleanupAfterRequest();
116+
return;
115117
}
116118

117119
//version

0 commit comments

Comments
 (0)
Please sign in to comment.