You can use Deps.autorun to quickly determine what it is if you want to quickly debug its quick way to do
Paste the code e.g.
Deps.autorun(function() {
Session.get("something");
console.log("Session something has changed");
});
Deps.autorun(function() {
Meteor.user()
console.log("Meteor user has changed");
});
You can place such blocks of code on your client computer to see what is changing. Each of them will be launched once, first, and then after each change of the reactive variable inside it.
You will need to do this for each variable that you use in your template, and this will help you find out what is changing, each Deps.autorun block will work independently only if the variable inside it changes.