diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/amqqueue.hrl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/amqqueue.hrl b/include/amqqueue.hrl index 5f873082e5..3a9ac45cce 100644 --- a/include/amqqueue.hrl +++ b/include/amqqueue.hrl @@ -65,15 +65,15 @@ -define(amqqueue_has_valid_pid(Q), ((?is_amqqueue_v2(Q) andalso - is_pid(?amqqueue_v2_field_pid(Q))) orelse - (?is_amqqueue_v1(Q) andalso - is_pid(?amqqueue_v1_field_pid(Q))))). + is_pid(?amqqueue_v2_field_pid(Q))) orelse + (?is_amqqueue_v1(Q) andalso + is_pid(?amqqueue_v1_field_pid(Q))))). -define(amqqueue_pid_runs_on_local_node(Q), ((?is_amqqueue_v2(Q) andalso - node(?amqqueue_v2_field_pid(Q)) =:= node()) orelse - (?is_amqqueue_v1(Q) andalso - node(?amqqueue_v1_field_pid(Q)) =:= node()))). + node(?amqqueue_v2_field_pid(Q)) =:= node()) orelse + (?is_amqqueue_v1(Q) andalso + node(?amqqueue_v1_field_pid(Q)) =:= node()))). -define(amqqueue_pid_equals(Q, Pid), ((?is_amqqueue_v2(Q) andalso @@ -108,9 +108,9 @@ -define(amqqueue_vhost_equals(Q, VHost), ((?is_amqqueue_v2(Q) andalso - ?amqqueue_v2_vhost(Q) =:= VHost) orelse - (?is_amqqueue_v1(Q) andalso - ?amqqueue_v1_vhost(Q) =:= VHost))). + ?amqqueue_v2_vhost(Q) =:= VHost) orelse + (?is_amqqueue_v1(Q) andalso + ?amqqueue_v1_vhost(Q) =:= VHost))). -ifdef(DEBUG_QUORUM_QUEUE_FF). -define(enable_quorum_queue_if_debug, |
