Skip to content

Commit

Permalink
fix(coordinator) cleanup and fixes for ExecPlans to/from proto conver…
Browse files Browse the repository at this point in the history
…sions (#1717)

* cleanup of imports and adding handling of transformers

* fixes for conversion and ActorRef serialization

---------

Co-authored-by: Kier Petrov <[email protected]>
  • Loading branch information
kvpetrov and Kier Petrov authored Feb 28, 2024
1 parent d950f32 commit e2f68d4
Show file tree
Hide file tree
Showing 3 changed files with 202 additions and 131 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,15 @@ object ActorSystemHolder {
system
}

/**
* This is to be used in unit tests.
* Allows a unit test to create its own ActorSystem
* in case if one does not exist and terminate it later.
*/
def terminateActorSystem() : Unit = {
system.terminate()
// scalastyle:off null
system = null
}

}
Loading

0 comments on commit e2f68d4

Please sign in to comment.