RabbitMQ pika.exceptions.ConnectionClosed

Intenté enviar un mensaje y recibir un mensaje usando RabbitMQ. No tengo experiencia en informática, los términos que utilicé no podrían ser muy precisos.

Intento copiar el archivo tutorial: cuando envío mi formulario html, mi script de Python (cgi) el mensaje se envía a la cola

connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
        channel = connection.channel()
        channel.queue_declare(queue='task_queue', durable=True)
        message = PN
        channel.basic_publish(exchange='',
                              routing_key='task_queue',
                              body=message,
                              properties=pika.BasicProperties(
                                 delivery_mode = 2, # make message persistent
                              ))
        connection.close()

mi receptor está funcionando:

connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
channel = connection.channel()
channel.queue_declare(queue='task_queue', durable=True)
print(' [*] Waiting for messages. To exit press CTRL+C')

def callback(ch, method, properties, body):
    print(" [x] Received Project %r" % body)
    #ch.basic_ack(delivery_tag = method.delivery_tag) 
    if not (os.path.isfile(js_path)):
        print (' [*] ERROR files missing ')
        #ch.basic_ack(delivery_tag = method.delivery_tag)
        return
    p= subprocess.Popen(run a subprocess here)
    p.wait()

    print (' [*] Temporary Files removed')
    print(" [*] Waiting for messages. To exit press CTRL+C")

channel.basic_qos(prefetch_count=1)
channel.basic_consume(callback,queue='task_queue',no_ack=True)
channel.start_consuming()

Se gestiona la mayor parte del tiempo, pero se bloquea al azar con el siguiente error:

Rastreo (última llamada más reciente): Archivo "Receive5.py", línea 139, en channel.start_consuming () Archivo "C: \ Python27 \ lib \ site-packages \ pika \ adapters \ block_connection.py", línea 1681, en start_consuming self.connection.process_data_events (time_limit = None) Archivo "C: \ Python27 \ lib \ site-packages \ pika \ adapters \ block_connection.py", línea 647, en process_data_events self._flush_output (common_terminator) Archivo "C: \ Python27 \ lib \ site-packages \ pika \ adapters \ blocking_connection.py ", línea 426, en _flush_output elevar excepciones.ConnectionClosed () pika.exceptions.ConnectionClosed

Respuestas a la pregunta(3)

Su respuesta a la pregunta