Changeset 6e49a4 in indico


Ignore:
Timestamp:
03/17/11 10:30:42 (2 years ago)
Author:
Pedro Ferreira <jose.pedro.ferreira@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
a7950b
Parents:
ee1010
git-author:
Pedro Ferreira <jose.pedro.ferreira@…> (03/17/11 09:19:18)
git-committer:
Pedro Ferreira <jose.pedro.ferreira@…> (03/17/11 10:30:42)
Message:

[FIX] Don't sent past alarms

Location:
indico
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/plugins/Collaboration/Vidyo/api/api.py

    rc18126 r6e49a4  
    120120 
    121121        except WebFault, e: 
    122             Logger.get('Vidyo').info("""Evt:%s, booking:%s, Admin API's getRooms operation got WebFault: %s""" % 
    123                                     (confId, bookingId, e.fault.faultstring)) 
    124             raise e 
     122            Logger.get('Vidyo').exception("""Evt:%s, booking:%s, Admin API's getRooms operation got WebFault: %s""" % 
     123                                    (confId, bookingId, e.fault.faultstring)) 
     124            raise 
    125125 
    126126        except Exception, e: 
  • indico/modules/scheduler/tasks.py

    r07abe7 r6e49a4  
    360360        self.smtpServer = Config.getInstance().getSmtpServer() 
    361361 
    362     def run(self, check=False): 
     362    def run(self, check=True): 
    363363        import smtplib 
    364364        from MaKaC.webinterface.mail import GenericMailer, GenericNotification 
    365365 
    366366        # prepare the mail 
    367         self._prepare(check=check); 
     367        self._prepare(check=check) 
    368368 
    369369        addrs = [smtplib.quoteaddr(x) for x in self.toAddr] 
Note: See TracChangeset for help on using the changeset viewer.