Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion v1/brokers/amqp/amqp.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,11 @@ func (b *Broker) consumeOne(delivery amqp.Delivery, taskProcessor iface.TaskProc

log.DEBUG.Printf("Received new message: %s", delivery.Body)

if ack && b.GetConfig().AMQP.EarlyAck {
delivery.Ack(multiple)
}
err := taskProcessor.Process(signature)
if ack {
if ack && !b.GetConfig().AMQP.EarlyAck {
delivery.Ack(multiple)
}
return err
Expand Down
1 change: 1 addition & 0 deletions v1/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ type AMQPConfig struct {
BindingKey string `yaml:"binding_key" envconfig:"AMQP_BINDING_KEY"`
PrefetchCount int `yaml:"prefetch_count" envconfig:"AMQP_PREFETCH_COUNT"`
AutoDelete bool `yaml:"auto_delete" envconfig:"AMQP_AUTO_DELETE"`
EarlyAck bool `yaml:"early_ack" envconfig:"AMQP_EARLY_ACK"`
}

// DynamoDBConfig wraps DynamoDB related configuration
Expand Down