Commit 91aac8a0 authored by Tom Evans's avatar Tom Evans

Fix SQL syntax error [pubsub]

Update statement for default node configuration was missing a comma
parent d83f7e6e
......@@ -192,7 +192,7 @@ public class PubSubPersistenceManager {
"UPDATE ofPubsubDefaultConf SET deliverPayloads=?, maxPayloadSize=?, persistItems=?, " +
"maxItems=?, notifyConfigChanges=?, notifyDelete=?, notifyRetract=?, " +
"presenceBased=?, sendItemSubscribe=?, publisherModel=?, subscriptionEnabled=?, " +
"accessModel=?, language=? replyPolicy=?, associationPolicy=?, maxLeafNodes=? " +
"accessModel=?, language=?, replyPolicy=?, associationPolicy=?, maxLeafNodes=? " +
"WHERE serviceID=? AND leaf=?";
private static final String ADD_DEFAULT_CONF =
"INSERT INTO ofPubsubDefaultConf (serviceID, leaf, deliverPayloads, maxPayloadSize, " +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment