diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2019-06-13 11:01:49 +0200 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2019-06-13 11:57:39 +0200 |
| commit | 1f5f8bb0863a3ddf14d2044bab5834ef8adba4b1 (patch) | |
| tree | ce26dc371f11177c5f4817b83a0f9cec2f41f9a6 | |
| parent | a8fccc34fbaac90170b2a0d44d91f75fa2cfc260 (diff) | |
| download | rabbitmq-server-git-1f5f8bb0863a3ddf14d2044bab5834ef8adba4b1.tar.gz | |
include/amqqueue.hrl: Fix indentation
| -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, |
