mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
All uniload.load for ddp should be the same
Otherwise the uniload cache doesn't work. This shaves a 365 ms off of stats report for me (in a built release, which doesn't even use the compiler!)
This commit is contained in:
@@ -165,7 +165,7 @@ var getPackagesForAppIdInTest = function (currentProject) {
|
||||
|
||||
var connectToPackagesStatsServer = function () {
|
||||
var Package = uniload.load({
|
||||
packages: ["ddp"]
|
||||
packages: ["meteor", "ddp"]
|
||||
});
|
||||
var conn = new ServiceConnection(
|
||||
Package,
|
||||
|
||||
@@ -190,7 +190,7 @@ exports.deployWithNewEmail = function (s, email, appName) {
|
||||
|
||||
var getLoadedPackages = function () {
|
||||
return uniload.load({
|
||||
packages: ['ddp']
|
||||
packages: ['meteor', 'ddp']
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user