[web2py] Re: Modules do not reflected changes.

2017-08-30 Thread Anthony
In what context are you failing to notice a change? With HTTP requests, or within scheduler tasks, a web2py shell, or command line calls? Restarting the server will only reload modules for HTTP requests. Anthony On Wednesday, August 30, 2017 at 10:56:54 AM UTC-4, Claudio Andre wrote: > >

[web2py] Re: Modules do not reflected changes.

2017-08-30 Thread Anthony
On Wednesday, August 30, 2017 at 11:20:05 AM UTC-4, Lars wrote: > > Hi, > You need to write at the beginning of the app models : > from gluon.custom_import import track_changes > track_changes(track=True) > That's only necessary for modules to be reloaded automatically upon change. Restarting

[web2py] Re: Modules do not reflected changes.

2017-08-30 Thread Lars
Hi, You need to write at the beginning of the app models : from gluon.custom_import import track_changes track_changes(track=True) Regards On Wednesday, August 30, 2017 at 4:56:54 PM UTC+2, Claudio Andre wrote: > > Hello, > > I'm using web2py 2.15.3-stable on Kali (debian) and having a strange >