fix SinkSpec, and async boundary attribute, #22463

* let's keep the AsyncBoundary attribute for now,
  makeIsland is done in setAttributes
* fixing SinkSpec and RunnableGraphSpec
This commit is contained in:
Patrik Nordwall 2017-03-08 14:22:19 +01:00 committed by Konrad `ktoso` Malawski
parent 2990edb66c
commit 6c8e24cefa
7 changed files with 32 additions and 72 deletions

View file

@ -30,7 +30,6 @@ trait Graph[+S <: Shape, +M] {
/**
* Put an asynchronous boundary around this `Graph`
*/
// TODO: no longer encoded as attributes!!!!
def async: Graph[S, M] = addAttributes(Attributes.asyncBoundary)
def addAttributes(attr: Attributes): Graph[S, M] = withAttributes(traversalBuilder.attributes and attr)