Commit 208f1120 by Tu Nombre

se cambia el limite de envio para tolerar mejor el limite de envio

1 parent e05a6b80
...@@ -55,7 +55,7 @@ class Process: ...@@ -55,7 +55,7 @@ class Process:
# manda todos los mensajes no enviados # manda todos los mensajes no enviados
def send(self): def send(self):
rows = self.conn.query("SELECT * FROM msg WHERE state = ?",(States.queued,)) rows = self.conn.query("SELECT * FROM msg WHERE state = ? ORDER BY id DESC LIMIT 10",(States.queued,))
for query in DBconnection.parseToTable(rows): for query in DBconnection.parseToTable(rows):
# si no existe la carpeta borrar el mensaje # si no existe la carpeta borrar el mensaje
if not os.path.exists(query[Table.path]): if not os.path.exists(query[Table.path]):
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!