This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a change to branch fix/message-id-random-source
in repository https://gitbox.apache.org/repos/asf/storm.git
discard db1ab8f43 Generate tuple tree ids from a key stream instead of a
recoverable linear congruential generator
add 29f9ffb38 Clarify worker/supervisor heartbeat docs and deprecate
unused nimbus.supervisor.timeout.secs (#8984)
add 40d14c004 Return only the log files the requesting user may access
from the log file listing (#8974)
add c14bfaf21 Add ui.enable.jsonp to control JSONP callback wrapping in UI
and Logviewer API responses (#8977)
add cb8d29b0b Change the worker log file permission only for download
requests that are served (#8978)
add 364dd7913 Reject image tags that are neither mapped nor valid image
hashes before building the manifest path (#8983)
add 2a41a038a Generate tuple tree ids from a key stream instead of a
recoverable linear congruential generator
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (db1ab8f43)
\
N -- N -- N refs/heads/fix/message-id-random-source (2a41a038a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
conf/defaults.yaml | 2 +
docs/Cluster-State-Serialization.md | 9 +++
docs/Daemon-Fault-Tolerance.md | 4 +-
docs/Lifecycle-of-a-topology.md | 1 +
docs/STORM-UI-REST-API.md | 1 +
.../oci/LocalOrHdfsImageTagToManifestPlugin.java | 23 +++++-
.../LocalOrHdfsImageTagToManifestPluginTest.java | 85 ++++++++++++++++++++++
.../main/java/org/apache/storm/DaemonConfig.java | 15 ++++
.../storm/daemon/nimbus/NimbusClojurePortTest.java | 2 -
.../handler/LogviewerLogDownloadHandler.java | 5 +-
.../logviewer/handler/LogviewerLogPageHandler.java | 17 ++++-
.../daemon/logviewer/utils/LogFileDownloader.java | 11 ++-
.../java/org/apache/storm/daemon/ui/UIHelpers.java | 19 +++++
.../handler/LogviewerLogDownloadHandlerTest.java | 78 ++++++++++++++++++++
.../handler/LogviewerLogPageHandlerTest.java | 56 ++++++++++++--
.../org/apache/storm/daemon/ui/UIHelpersTest.java | 27 +++++++
16 files changed, 338 insertions(+), 17 deletions(-)
create mode 100644
external/storm-hdfs-oci/src/test/java/org/apache/storm/container/oci/LocalOrHdfsImageTagToManifestPluginTest.java