From e813814df8746fffaa3578a64f0f6bcfcbd601f9 Mon Sep 17 00:00:00 2001 From: Mickael BOURNEUF Date: Wed, 12 Feb 2025 21:22:47 +0100 Subject: [PATCH] suppression du publisher --- pkg/amqp/publisher.go | 52 ------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 pkg/amqp/publisher.go diff --git a/pkg/amqp/publisher.go b/pkg/amqp/publisher.go deleted file mode 100644 index 5ff08bf..0000000 --- a/pkg/amqp/publisher.go +++ /dev/null @@ -1,52 +0,0 @@ -package amqp - -import ( - "crypto/tls" - "log" - - "github.com/rabbitmq/amqp091-go" - "gopkg.in/ini.v1" -) - -func Config() (*ini.File, error) { - return ini.Load("/etc/deevirt/config.ini") -} - -func Publisher(body []byte) { - config, _ := Config() - - amqp_config := amqp091.Config{ - Properties: amqp091.NewConnectionProperties(), - TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, - } - amqp_config.Properties.SetClientConnectionName("producer-with-confirms") - - conn, err := amqp091.DialConfig(config.Section("broker").Key("uri").String(), amqp_config) - if err != nil { - log.Fatalf("producer: error in dial: %s", err) - } - defer conn.Close() - - log.Println("producer: got Connection, getting Channel") - channel, err := conn.Channel() - if err != nil { - log.Fatalf("error getting a channel: %s", err) - } - defer channel.Close() - - //log.Printf("producer: publishing %dB body (%q)", len(*body), *body) - _, err = channel.PublishWithDeferredConfirm( - "vmcenter", - "cluster.f242b4bb-b6d0-415f-b3f9-9e9d439532b5.dom.add", - true, - false, - amqp091.Publishing{ - ContentType: "text/plain", - DeliveryMode: amqp091.Persistent, - Body: body, - }, - ) - if err != nil { - log.Fatalf("producer: error in publish: %s", err) - } -}