Merge pull request #8241 from cloudamqp/queue_storage_version

Show classic queue storage version on Mgmt UI queue page
This commit is contained in:
Michael Klishin 2023-05-19 11:09:19 +04:00 committed by GitHub
commit e60a5409ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -194,6 +194,9 @@ function args_to_features(obj) {
if (obj.messages_delayed != undefined){
res['messages delayed'] = obj.messages_delayed;
}
if (obj.backing_queue_status && obj.backing_queue_status.version){
res['queue storage version'] = obj.backing_queue_status.version
}
return res;
}