Skip to content

Commit

Permalink
Revert "Show project path in server parsing error (revert before rele…
Browse files Browse the repository at this point in the history
…ase)"

This reverts commit 368223a.
  • Loading branch information
nyalldawson committed Feb 23, 2016
1 parent c8dffaf commit 02499d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/qgsserver.cpp
Expand Up @@ -539,7 +539,7 @@ QPair<QByteArray, QByteArray> QgsServer::handleRequest( const QString& queryStri
);
if ( !p )
{
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", QString( "Error reading the project file: %1" ).arg( configFilePath ) ) );
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", "Error reading the project file" ) );
}
else
{
Expand All @@ -565,7 +565,7 @@ QPair<QByteArray, QByteArray> QgsServer::handleRequest( const QString& queryStri
);
if ( !p )
{
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", QString( "Error reading the project file: %1" ).arg( configFilePath ) ) );
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", "Error reading the project file" ) );
}
else
{
Expand Down

0 comments on commit 02499d2

Please sign in to comment.