@@ -22,30 +22,27 @@ import java.time.Duration
22
22
import java .util .UUID
23
23
import java .util .concurrent .TimeUnit
24
24
import java .util .concurrent .TimeoutException
25
- import akka .NotUsed
26
- import akka .actor .ActorSystem
27
- import akka .http .scaladsl .Http
28
- import akka .http .scaladsl .model .Uri
29
- import akka .http .scaladsl .model .ws .BinaryMessage
30
- import akka .http .scaladsl .model .ws .TextMessage
31
- import akka .http .scaladsl .model .ws .WebSocketRequest
32
- import akka .stream .FlowShape
33
- import akka .stream .Materializer
34
- import akka .stream .OverflowStrategy
35
- import akka .stream .ThrottleMode
36
- import akka .stream .scaladsl .Broadcast
37
- import akka .stream .scaladsl .BroadcastHub
38
- import akka .stream .scaladsl .FileIO
39
- import akka .stream .scaladsl .Flow
40
- import akka .stream .scaladsl .GraphDSL
41
- import akka .stream .scaladsl .Keep
42
- import akka .stream .scaladsl .Merge
43
- import akka .stream .scaladsl .Sink
44
- import akka .stream .scaladsl .Source
45
- import akka .util .ByteString
46
- import com .netflix .atlas .akka .ClusterOps
47
- import com .netflix .atlas .akka .StreamOps
48
- import com .netflix .atlas .akka .ThreadPools
25
+ import org .apache .pekko .NotUsed
26
+ import org .apache .pekko .actor .ActorSystem
27
+ import org .apache .pekko .http .scaladsl .Http
28
+ import org .apache .pekko .http .scaladsl .model .Uri
29
+ import org .apache .pekko .http .scaladsl .model .ws .BinaryMessage
30
+ import org .apache .pekko .http .scaladsl .model .ws .TextMessage
31
+ import org .apache .pekko .http .scaladsl .model .ws .WebSocketRequest
32
+ import org .apache .pekko .stream .FlowShape
33
+ import org .apache .pekko .stream .Materializer
34
+ import org .apache .pekko .stream .OverflowStrategy
35
+ import org .apache .pekko .stream .ThrottleMode
36
+ import org .apache .pekko .stream .scaladsl .Broadcast
37
+ import org .apache .pekko .stream .scaladsl .BroadcastHub
38
+ import org .apache .pekko .stream .scaladsl .FileIO
39
+ import org .apache .pekko .stream .scaladsl .Flow
40
+ import org .apache .pekko .stream .scaladsl .GraphDSL
41
+ import org .apache .pekko .stream .scaladsl .Keep
42
+ import org .apache .pekko .stream .scaladsl .Merge
43
+ import org .apache .pekko .stream .scaladsl .Sink
44
+ import org .apache .pekko .stream .scaladsl .Source
45
+ import org .apache .pekko .util .ByteString
49
46
import com .netflix .atlas .core .model .DataExpr
50
47
import com .netflix .atlas .core .model .Query
51
48
import com .netflix .atlas .eval .model .AggrDatapoint
@@ -61,6 +58,9 @@ import com.netflix.atlas.eval.stream.Evaluator.DatapointGroup
61
58
import com .netflix .atlas .eval .stream .Evaluator .MessageEnvelope
62
59
import com .netflix .atlas .json .Json
63
60
import com .netflix .atlas .json .JsonSupport
61
+ import com .netflix .atlas .pekko .ClusterOps
62
+ import com .netflix .atlas .pekko .StreamOps
63
+ import com .netflix .atlas .pekko .ThreadPools
64
64
import com .netflix .spectator .api .Registry
65
65
import com .typesafe .config .Config
66
66
import org .reactivestreams .Processor
@@ -124,7 +124,7 @@ private[stream] abstract class EvaluatorImpl(
124
124
125
125
protected def writeInputToFileImpl (uri : Uri , file : Path , duration : FiniteDuration ): Unit = {
126
126
// Explicit type needed in 2.5.2, but not 2.5.0. Likely related to:
127
- // https://github.com/akka/akka /issues/22666
127
+ // https://github.com/pekko/pekko /issues/22666
128
128
val options = Set [OpenOption ](
129
129
StandardOpenOption .WRITE ,
130
130
StandardOpenOption .CREATE ,
0 commit comments