1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

A small fix

Fix of .drone.jsonnet
This commit is contained in:
Serguey Zefirov
2025-05-05 10:19:22 +03:00
parent 0ec7b45fb4
commit 560e0a8edd

View File

@@ -501,9 +501,10 @@ void WEClients::write(const messageqcpp::ByteStream& msg, uint32_t connection)
fPmConnections[connection]->write(msg);
else
{
ostringstream os;
os << "Lost connection to WriteEngineServer on pm" << connection;
throw runtime_error(os.str());
// new behavior: connection client is nullptr means it is read-only.
// ostringstream os;
// os << "Lost connection to WriteEngineServer on pm" << connection;
// throw runtime_error(os.str());
}
}