Skip to content

Commit 70e7386

Browse files
Merge pull request #12438 from rabbitmq/mergify/bp/v4.0.x/pr-12437
2 parents bdb0cf6 + e518d43 commit 70e7386

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/templates/test-mixed-versions.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
https://builds.hex.pm
9797
https://cdn.jsdelivr.net/hex
9898
- name: AUTHENTICATE TO GOOGLE CLOUD
99-
uses: google-github-actions/[email protected].5
99+
uses: google-github-actions/[email protected].6
100100
with:
101101
credentials_json: ${{ secrets.REMOTE_CACHE_CREDENTIALS_JSON }}
102102
- name: BUILD SECONDARY UMBRELLA ARCHIVE

.github/workflows/templates/test.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
echo "value=bazel-repo-cache-${{ hashFiles('MODULE.bazel') }}" | tee -a $GITHUB_OUTPUT
7575
- name: AUTHENTICATE TO GOOGLE CLOUD
76-
uses: google-github-actions/[email protected].5
76+
uses: google-github-actions/[email protected].6
7777
with:
7878
credentials_json: ${{ secrets.REMOTE_CACHE_CREDENTIALS_JSON }}
7979
- name: REPO CACHE

deps/rabbit/src/rabbit_amqqueue_process.erl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@
119119
arguments,
120120
owner_pid,
121121
exclusive,
122-
user_who_performed_action
122+
user_who_performed_action,
123+
leader,
124+
members
123125
]).
124126

125127
-define(INFO_KEYS, [pid | ?CREATION_EVENT_KEYS ++ ?STATISTICS_KEYS -- [name, type]]).
@@ -1083,6 +1085,8 @@ i(auto_delete, #q{q = Q}) -> amqqueue:is_auto_delete(Q);
10831085
i(arguments, #q{q = Q}) -> amqqueue:get_arguments(Q);
10841086
i(pid, _) ->
10851087
self();
1088+
i(leader, State) -> node(i(pid, State));
1089+
i(members, State) -> [i(leader, State)];
10861090
i(owner_pid, #q{q = Q}) when ?amqqueue_exclusive_owner_is(Q, none) ->
10871091
'';
10881092
i(owner_pid, #q{q = Q}) ->

0 commit comments

Comments
 (0)