This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a change to branch fix/nimbus-listblobs-authorization
in repository https://gitbox.apache.org/repos/asf/storm.git
from 67030409e Apply the nimbus ACLs to listBlobs so callers only see blobs
they may read
add c1c3338fd Generate tuple tree ids from a key stream instead of a
recoverable linear congruential generator (#8989)
add 4af262d17 Remove DRPC per-function request queues once they are empty
(#8985)
add 053570037 Validate topology.blobstore.map in rebalance conf overrides
against the calling user (#8999)
add b8c71da61 Evaluate nimbus.groups when nimbus.users is empty (#8998)
add 4748889a0 Merge branch 'master' into fix/nimbus-listblobs-authorization
No new revisions were added by this update.
Summary of changes:
.../jvm/org/apache/storm/executor/Executor.java | 3 +-
.../auth/authorizer/SimpleACLAuthorizer.java | 6 +-
.../org/apache/storm/utils/KeyStreamRandom.java | 107 +++++++++++++++++++++
.../apache/storm/executor/SpoutExecutorTest.java | 28 ++++++
.../auth/authorizer/SimpleACLAuthorizerTest.java | 51 ++++++++++
.../jvm/org/apache/storm/tuple/MessageIdTest.java | 99 +++++++++++++++++++
.../java/org/apache/storm/daemon/drpc/DRPC.java | 48 ++++++---
.../org/apache/storm/daemon/nimbus/Nimbus.java | 3 +
.../org/apache/storm/daemon/drpc/DRPCTest.java | 105 ++++++++++++++++++++
.../org/apache/storm/daemon/nimbus/NimbusTest.java | 46 +++++++++
10 files changed, 481 insertions(+), 15 deletions(-)
create mode 100644
storm-client/src/jvm/org/apache/storm/utils/KeyStreamRandom.java
create mode 100644
storm-client/test/jvm/org/apache/storm/tuple/MessageIdTest.java