This is an automated email from the ASF dual-hosted git repository. trohrmann pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink.git.
from 6b1be17 [hotfix] Let FlinkKinesisConsumerTest extend TestLogger new c1ffb72 [hotfix] Introduce TestingLogicalSlotBuilder new f75d8e1 [FLINK-13334][coordination] Remove legacy slot implementation The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../runtime/executiongraph/ExecutionJobVertex.java | 4 - .../apache/flink/runtime/instance/SharedSlot.java | 333 ----------- .../apache/flink/runtime/instance/SimpleSlot.java | 290 --------- .../org/apache/flink/runtime/instance/Slot.java | 381 ------------ .../instance/SlotSharingGroupAssignment.java | 664 --------------------- .../jobmanager/scheduler/CoLocationConstraint.java | 91 +-- .../jobmanager/scheduler/CoLocationGroup.java | 6 - .../jobmanager/scheduler/SlotSharingGroup.java | 23 - .../ExecutionGraphDeploymentTest.java | 34 +- .../executiongraph/ExecutionGraphMetricsTest.java | 6 +- .../ExecutionGraphPartitionReleaseTest.java | 4 +- .../ExecutionGraphSchedulingTest.java | 80 +-- .../executiongraph/ExecutionGraphTestUtils.java | 4 +- .../ExecutionPartitionLifecycleTest.java | 13 +- .../runtime/executiongraph/ExecutionTest.java | 36 +- .../executiongraph/ExecutionVertexCancelTest.java | 16 +- .../ExecutionVertexDeploymentTest.java | 13 +- .../ExecutionVertexLocalityTest.java | 18 +- .../ExecutionVertexSchedulingTest.java | 8 +- .../executiongraph/utils/SimpleSlotProvider.java | 18 +- .../flink/runtime/instance/SharedSlotsTest.java | 630 ------------------- .../flink/runtime/instance/SimpleSlotTest.java | 135 ----- .../scheduler/ScheduleWithCoLocationHintTest.java | 10 - .../runtime/jobmaster/TestingLogicalSlot.java | 69 +-- .../jobmaster/TestingLogicalSlotBuilder.java | 93 +++ .../DefaultExecutionSlotAllocatorTest.java | 4 +- ...GraphToInputsLocationsRetrieverAdapterTest.java | 3 +- 27 files changed, 233 insertions(+), 2753 deletions(-) delete mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/instance/SharedSlot.java delete mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/instance/SimpleSlot.java delete mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/instance/Slot.java delete mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/instance/SlotSharingGroupAssignment.java delete mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/instance/SharedSlotsTest.java delete mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/instance/SimpleSlotTest.java create mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/TestingLogicalSlotBuilder.java