In one of my apps i had to change the database location to a new server 
with new credentials. Everything is working great nothing tricky here. 
However i get a random error emailed to me, a rejection from the database, 
and in the email is the old url and credentials for the old postgresql 
server (no longer operational).

I have checked every script, every cron job, every ini file with in the app 
looking for what might be calling up this old URL. I even grepped the 
entire file system for the old db user name. Nothing.

Is it possible that the old url is cached somewhere? The trace back doesn't 
give me what i need to figure out where its getting the config from when it 
runs BUT it is from a part of the app where i am using tg.cache 
(mycache_cats)

cachedvalue_cats = mycache_cats.get_value(
            key=datetime.date.month,
            createfunc=self.get_item_cats,
            expiretime=3600
        )

So i'm thinking its cached somewhere BUT i am using memory for cache 
"beaker.cache.type = memory". I even bounced the server to make sure 
nothing was lingering in the memory (after restarting apache).

I also though maybe it was still writing something to cache on disk and 
searched everywhere and found nothing. 

Even if it is cached shouldn't the results be cached and not the DBURL?


-- 
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/turbogears.
For more options, visit https://groups.google.com/d/optout.

Reply via email to