- Timestamp:
- Apr 22, 2016, 2:17:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
n4d-matrix/trunk/install_server/usr/share/n4d/python-plugins/Matrix.py
r1264 r1270 5 5 import os 6 6 import json 7 import threading 8 7 9 class Matrix: 8 10 … … 19 21 20 22 def startup(self,options): 23 21 24 try: 22 25 self.update_from_matrix() … … 25 28 26 29 def update_from_matrix(self): 30 31 t=threading.Thread(target=self.t_update_from_matrix) 32 t.daemon=True 33 t.start() 34 35 #def update_from_matrix 36 37 def t_update_from_matrix(self): 27 38 try: 28 39 if not objects['SlapdManager'].test_ldap_connection():
Note: See TracChangeset
for help on using the changeset viewer.