File tree Expand file tree Collapse file tree 6 files changed +14
-4
lines changed
modules/streams/src/main/java/org/elasticsearch/rest/streams/logs
test/framework/src/main/java/org/elasticsearch/test
plugin/security/qa/operator-privileges-tests/src/javaRestTest/java/org/elasticsearch/xpack/security/operator
test/idp-fixture/src/main/resources/oidc Expand file tree Collapse file tree 6 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1+ pr : 131015
2+ summary : Move streams status actions to cluster:monitor group
3+ area : Data streams
4+ type : bug
5+ issues : []
Original file line number Diff line number Diff line change 2626
2727public class StreamsStatusAction {
2828
29- public static ActionType <Response > INSTANCE = new ActionType <>("cluster:admin /streams/status" );
29+ public static ActionType <Response > INSTANCE = new ActionType <>("cluster:monitor /streams/status" );
3030
3131 public static class Request extends LocalClusterStateRequest {
3232 protected Request (TimeValue masterTimeout ) {
Original file line number Diff line number Diff line change @@ -546,6 +546,12 @@ tests:
546546- class : org.elasticsearch.xpack.esql.ccq.MultiClustersIT
547547 method : testNotLikeListKeyword
548548 issue : https://github.com/elastic/elasticsearch/issues/131155
549+ - class : org.elasticsearch.index.engine.ThreadPoolMergeExecutorServiceDiskSpaceTests
550+ method : testEnqueuedMergeTasksAreUnblockedWhenEstimatedMergeSizeChanges
551+ issue : https://github.com/elastic/elasticsearch/issues/131165
552+ - class : org.elasticsearch.xpack.esql.ccq.MultiClustersIT
553+ method : testLookupJoinAliases
554+ issue : https://github.com/elastic/elasticsearch/issues/131166
549555
550556# Examples:
551557#
Original file line number Diff line number Diff line change @@ -534,7 +534,6 @@ public static void setupEntitlementsForClass() {
534534 TestEntitlementBootstrap .setActive (false == withoutEntitlements );
535535 TestEntitlementBootstrap .setTriviallyAllowingTestCode (false == withEntitlementsOnTestCode );
536536 if (entitledPackages != null ) {
537- assert withEntitlementsOnTestCode == false : "Cannot use @WithEntitlementsOnTestCode together with @EntitledTestPackages" ;
538537 assert entitledPackages .value ().length > 0 : "No test packages specified in @EntitledTestPackages" ;
539538 TestEntitlementBootstrap .setEntitledTestPackages (entitledPackages .value ());
540539 }
Original file line number Diff line number Diff line change @@ -73,7 +73,6 @@ public class Constants {
7373 "cluster:admin/scripts/painless/context" ,
7474 "cluster:admin/scripts/painless/execute" ,
7575 "cluster:admin/streams/logs/toggle" ,
76- "cluster:admin/streams/status" ,
7776 "cluster:admin/synonyms/delete" ,
7877 "cluster:admin/synonyms/get" ,
7978 "cluster:admin/synonyms/put" ,
@@ -373,6 +372,7 @@ public class Constants {
373372 "cluster:monitor/settings" ,
374373 "cluster:monitor/state" ,
375374 "cluster:monitor/stats" ,
375+ "cluster:monitor/streams/status" ,
376376 "cluster:monitor/task" ,
377377 "cluster:monitor/task/get" ,
378378 "cluster:monitor/tasks/lists" ,
Original file line number Diff line number Diff line change 11FROM c2id/c2id-server-demo:16.1.1 AS c2id
2- FROM openjdk:21-jdk-buster
2+ FROM eclipse-temurin:17-noble
33
44# Using this to launch a fake server on container start; see `setup.sh`
55RUN apt-get update -qqy && apt-get install -qqy python3
You can’t perform that action at this time.
0 commit comments