Rolled back to Meteor 1.13, removed publication strategies

This commit is contained in:
Thaum Rystra
2024-10-28 15:09:59 +02:00
parent f44afd8b6a
commit 90aaf2d0fc
4 changed files with 53 additions and 53 deletions

View File

@@ -6,12 +6,12 @@ const { NO_MERGE_MULTI } = DDPServer.publicationStrategies;
have been sent to the client over multiple subscriptions. Lower memory use, but sends more updates
to the clients, which will need to merge them.
*/
Meteor.server.setPublicationStrategy(
'creatureProperties', NO_MERGE_MULTI
);
Meteor.server.setPublicationStrategy(
'creatureVariables', NO_MERGE_MULTI
);
Meteor.server.setPublicationStrategy(
'libraryNodes', NO_MERGE_MULTI
);
// Meteor.server.setPublicationStrategy(
// 'creatureProperties', NO_MERGE_MULTI
// );
// Meteor.server.setPublicationStrategy(
// 'creatureVariables', NO_MERGE_MULTI
// );
// Meteor.server.setPublicationStrategy(
// 'libraryNodes', NO_MERGE_MULTI
// );