[web2py] Re: scheduler and requires_https

2012-10-29 Thread Niphlod
gotcha, we forgot to apply a patch when it was pointed out. Working on that as we speak --

[web2py] Re: scheduler and requires_https

2012-10-29 Thread Niphlod
PS: if you're on a rush, the problem is that requires_https() doesn't check if it's running within the scheduler. instead of request.requires_https() do cmd_options = request.global_settings.cmd_options if not (cmd_options and cmd_options.scheduler): request.requires_https() PS: this was po