Do version check better for pods
Created by: dmorley
Dev pods do not really get a version check Sometime prod code jumps from v 3.3 to 3.5 in a month and makes all pods stale the checks table can be used to address this somehow, example:
SELECT DISTINCT ON (shortversion) shortversion, date_checked FROM checks WHERE domain = '' AND shortversion IS NOT NULL ORDER BY shortversion DESC LIMIT 2;
Should look to see what the dev norms are, how often etc. If a pod does not update for a year on dev what then? or prod ones that are a few versions behind but that's only a month etc. lots of fringe cases where code versions are not ==