+ fix err message typo

This commit is contained in:
artemp 2013-09-16 10:40:48 +01:00
parent ac8a0f01eb
commit 95026329ce

View file

@ -108,7 +108,7 @@ postgis_datasource::postgis_datasource(parameters const& params)
if(max_async_connections_ > pool_max_size_)
{
std::ostringstream err;
err << "PostGIS Plugin: Error: 'max_async_connections_ must be > pool_max_size_\n";
err << "PostGIS Plugin: Error: 'max_async_connections_ must be <= pool_max_size_\n";
throw mapnik::datasource_exception(err.str());
}