You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2019/08/29 15:57:33 UTC

[flink] branch release-1.9 updated (5335e93 -> 9fa6a42)

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a change to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from 5335e93  [hotfix][doc] fix catalog registration example
     add e01430f  [hotfix] Rename SlotManagerTest into SlotManagerImplTest
     add aa638c1  [hotfix][tests] Add CoreMatchers#containsCause
     add 7eb7a43  [hotfix] Make ResourceManagerException a subclass of FlinkException
     add b3a4f10  [hotfix] Introduce SlotManagerException
     add 84d1fc7  [hotfix] Remove Mockito from SlotManagerImplTest
     add 6f6fb7d  [hotfix] Harden SlotManagerImplTest#testSlotReportWhileActiveSlotRequest
     add 2aba9c4  [hotfix] Remove unnecessary SuppressWarnings annotations from SlotManagerImplTest
     add 9fa6a42  [FLINK-13805] Properly forward cause for slot removal in SlotManager

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/flink/util/CoreMatchers.java   |  70 ++++++
 .../runtime/resourcemanager/ResourceManager.java   |   8 +-
 .../exceptions/ResourceManagerException.java       |   3 +-
 .../resourcemanager/slotmanager/SlotManager.java   |   3 +-
 .../slotmanager/SlotManagerException.java}         |  22 +-
 .../slotmanager/SlotManagerImpl.java               |  42 ++--
 ...otManagerTest.java => SlotManagerImplTest.java} | 255 +++++++++++----------
 .../slotmanager/TestingSlotManager.java            |   2 +-
 8 files changed, 239 insertions(+), 166 deletions(-)
 create mode 100644 flink-core/src/test/java/org/apache/flink/util/CoreMatchers.java
 copy flink-runtime/src/main/java/org/apache/flink/runtime/{dispatcher/DispatcherException.java => resourcemanager/slotmanager/SlotManagerException.java} (63%)
 rename flink-runtime/src/test/java/org/apache/flink/runtime/resourcemanager/slotmanager/{SlotManagerTest.java => SlotManagerImplTest.java} (89%)