You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/v1beta1/queue_types.go
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,18 +21,19 @@ import (
21
21
22
22
// QueueSpec defines the desired state of Queue
23
23
typeQueueSpecstruct {
24
-
// Name of the queue; required property
24
+
// Name of the queue; required property.
25
25
// +kubebuilder:validation:Required
26
26
Namestring`json:"name"`
27
27
// Default to vhost '/'
28
28
// +kubebuilder:default:=/
29
29
Vhoststring`json:"vhost,omitempty"`
30
30
Typestring`json:"type,omitempty"`
31
-
// When set to false queues does not survive server restart
31
+
// When set to false queues does not survive server restart.
32
32
Durablebool`json:"durable,omitempty"`
33
-
// when set to true, queues that has at least one consumer before, are deleted after last consumer unsubscribes
33
+
// when set to true, queues that have had at least one consumer before are deleted after the last consumer unsubscribes.
34
34
AutoDeletebool`json:"autoDelete,omitempty"`
35
-
// Queue arguments in the format of KEY: VALUE. e.g. x-delivery-limit: 10000
35
+
// Queue arguments in the format of KEY: VALUE. e.g. x-delivery-limit: 10000.
36
+
// Configuring queues through arguments is not recommended because they cannot be updated once set; we recommend configuring queues through policies instead.
0 commit comments