Meteor crash after meteor update

Hi All,

I have updated my meteor:

This project is already at Meteor 1.5, the latest release.
                                                                                   
Changes to your project's package version selections from updating package versions:
                                              
accounts-facebook          upgraded from 1.2.0 to 1.2.1
accounts-password          upgraded from 1.3.6 to 1.3.7
babel-compiler             upgraded from 6.19.1 to 6.19.4
boilerplate-generator      upgraded from 1.1.0 to 1.1.1
ddp-common                 upgraded from 1.2.8 to 1.2.9
dynamic-import             upgraded from 0.1.0 to 0.1.1
ecmascript                 upgraded from 0.8.0 to 0.8.1
ecmascript-runtime-client  upgraded from 0.4.1 to 0.4.2
email                      upgraded from 1.2.1 to 1.2.3
facebook-oauth             upgraded from 1.3.1 to 1.3.2
fourseven:scss             upgraded from 4.5.0 to 4.5.4
jagi:astronomy             upgraded from 2.4.3 to 2.4.8
meteor                     upgraded from 1.6.1 to 1.7.0
minifier-js                upgraded from 2.1.0 to 2.1.1
minimongo                  upgraded from 1.2.0 to 1.2.1
modules                    upgraded from 0.9.0 to 0.9.2
npm-bcrypt                 upgraded from 0.9.2 to 0.9.3
shell-server               upgraded from 0.2.3 to 0.2.4
standard-minifier-js       upgraded from 2.1.0 to 2.1.1
themeteorchef:bert         upgraded from 2.1.2 to 2.1.3
webapp                     upgraded from 1.3.16 to 1.3.17

After this update meteor is giving below error, I can not figure where this error belongs to. As before update application was working without errors.

$ meteor
[[[[[ ~/projects/blabla ]]]]]                 

=> Started proxy.                             
=> Started MongoDB.                           
W20170713-13:02:49.169(6)? (STDERR) /home/wild/.meteor/packages/meteor-tool/.1.5.0.ux92f4++os.linux.x86_64+web.browser+web.cordova/mt-os.linux.x86_64/dev_bundle/server-lib/node_modules/fibers/future.js:280
W20170713-13:02:49.232(6)? (STDERR) 						throw(ex);
W20170713-13:02:49.233(6)? (STDERR) 						^
W20170713-13:02:49.234(6)? (STDERR) 
W20170713-13:02:49.234(6)? (STDERR) TypeError: Cannot read property 'get' of undefined
W20170713-13:02:49.235(6)? (STDERR)     at withoutInvocation (packages/meteor.js:443:33)
W20170713-13:02:49.235(6)? (STDERR)     at bindAndCatch (packages/meteor.js:452:33)
W20170713-13:02:49.236(6)? (STDERR)     at Object._.extend.defer (packages/meteor.js:514:26)
W20170713-13:02:49.236(6)? (STDERR)     at [object Object].MongoConnection.tail (packages/mongo/mongo_driver.js:1170:10)
W20170713-13:02:49.237(6)? (STDERR)     at [object Object]._.extend._startTailing (packages/mongo/oplog_tailing.js:239:50)
W20170713-13:02:49.237(6)? (STDERR)     at new OplogHandle (packages/mongo/oplog_tailing.js:76:8)
W20170713-13:02:49.237(6)? (STDERR)     at new MongoConnection (packages/mongo/mongo_driver.js:214:25)
W20170713-13:02:49.238(6)? (STDERR)     at new MongoInternals.RemoteCollectionDriver (packages/mongo/remote_collection_driver.js:4:16)
W20170713-13:02:49.239(6)? (STDERR)     at Object.<anonymous> (packages/mongo/remote_collection_driver.js:38:10)
W20170713-13:02:49.239(6)? (STDERR)     at Object.defaultRemoteCollectionDriver (packages/underscore.js:784:19)

Regards.

For some reason the CLI doesn’t realise meteor 1.5.1 is out, so it updates packages, but not meteor and breaks.
Until the CLI catches up, you got to specify that you want 1.5.1

meteor update --release 1.5.1
5 Likes

Exactly the same problem, after updating I get
"TypeError: Cannot read property ‘get’ of undefined" no matter what packages I added or removed.

Tearing my hair out for about 1 hour as Google wouldn’t return any search results for my error either. #ouch#

After doing 1.5.1 update it worked.

Thanks!

2 Likes