fs adjustments

This commit is contained in:
Kevin Froman 2019-03-15 00:30:43 -05:00
parent 7f84cd0598
commit 59cc7709d9
2 changed files with 2 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class OnionrCommunicatorDaemon:
else:
logger.debug('Will not announce node.')
cleanupTimer = OnionrCommunicatorTimers(self, self.peerCleanup, 300, requiresPeer=True)
forwardSecrecyTimer = OnionrCommunicatorTimers(self, self.daemonTools.cleanKeys, 15)
forwardSecrecyTimer = OnionrCommunicatorTimers(self, self.daemonTools.cleanKeys, 15, maxThreads=1)
# set loop to execute instantly to load up peer pool (replaced old pool init wait)
peerPoolTimer.count = (peerPoolTimer.frequency - 1)

View File

@ -111,6 +111,7 @@ class OnionrUser:
return (retData, forwardKey[0], forwardKey[1])
def forwardDecrypt(self, encrypted):
deleteExpiredKeys(self._core)
retData = ""
for key in self.getGeneratedForwardKeys(False):
try: