drewhk
549d9de7c9
Merge pull request #21258 from drewhk/wip-20887-reduce-gc-pressure-framingspec-drewhk
...
#20887 : Reduce GC pressure by compacting to reduce long lived garbage
2016-08-23 14:17:31 +02:00
Johan Andrén
a5cb0d4b90
Corrected previous version mima-filters, added 2.4.9 empty section
2016-08-23 13:49:43 +02:00
Endre Sándor Varga
00f8e4f87a
#20887 : Reduce GC pressure by compacting to reduce long lived garbage
2016-08-23 12:52:28 +02:00
Patrik Nordwall
0d40f61dc4
Merge pull request #21155 from andreaTP/unsVis
...
=act change Unsubscribers visibility.
2016-08-23 12:18:03 +02:00
Patrik Nordwall
7f2b6f8b54
Merge pull request #21186 from agolubev/21049-gaps-in-stages-overview-doc-agolubev
...
=str 21049 gaps in Source/Sink sections of stages-overview documentation
2016-08-23 12:08:38 +02:00
Patrik Nordwall
fa614f0325
Merge pull request #21208 from kkasravi/issue_21193_kkasravi
...
fixes #21193 Expose a number of GraphStage attributes
2016-08-23 11:59:42 +02:00
Konrad Malawski
d58d123e25
=doc Added hints about timeouts to contributing.md ( #21256 )
...
* =doc Added hints about timeouts to contributing.md
* Update CONTRIBUTING.md
* Update CONTRIBUTING.md
2016-08-23 11:57:01 +02:00
drewhk
1278da9809
Merge pull request #21254 from drewhk/add-some-assertallstagesstopped-drewhk
...
Adding some assertAllStagesStopped
2016-08-23 11:33:39 +02:00
Johan Andrén
cee77aab38
=htp A bit more generous timeouts in HttpServerSpec #20350 ( #21255 )
2016-08-23 11:29:10 +02:00
Alexander Golubev
024d95690c
=str 21049 gaps in FlowOps section of stages-overview documentation
2016-08-23 10:51:30 +02:00
Johan Andrén
e480b7940e
More generous binding timeouts in TcpSpec ( #21246 )
...
* More generous binding timeouts in TcpSpec #21014
* Use remainingOrDefault instead
2016-08-23 10:50:25 +02:00
Martynas Mickevičius
640f35ec64
=str #21199 Prevent pull/push from constructor by throwing IllegalStateException ( #21252 )
2016-08-23 10:44:09 +02:00
Endre Sándor Varga
119f2596ba
Adding some assertAllStagesStopped
2016-08-23 10:28:20 +02:00
Johan Andrén
09c656c21d
=htc Bugfix #21243 absolute request target parsing broken ( #21244 )
2016-08-23 01:58:10 +02:00
drewhk
caa98c0110
Merge pull request #21111 from drewhk/wip-scalatest-3.0.0-upgrade-drewhk
...
Updating to ScalaTest 3.0.0 and ScalaCheck 1.13.2
2016-08-22 14:04:24 +02:00
drewhk
4f9648e4fd
Merge pull request #21139 from drewhk/wip-21135-unbroke-fuzzing-drewhk
...
#21135 : Fix fuzzing mode
2016-08-22 14:00:18 +02:00
Endre Sándor Varga
227f6cfd84
#21135 : Fix fuzzing mode
2016-08-22 11:26:50 +02:00
Endre Sándor Varga
5e830323f6
Updating to ScalaTest 3.0.0 and ScalaCheck 1.13.2
2016-08-22 11:13:49 +02:00
2beaucoup
0ed4a2aae9
=htp clean up json stream unmarshalling ( #21233 )
2016-08-19 16:21:33 +02:00
Patrik Nordwall
0c4d4c37ba
cluster singleton improvements, #20942
...
* track nodes by UniqueAddress in Cluster Singleton, #20942
* reply with HandOverDone from new incarnation, #20942
* confirm as terminated immediately when new incarnation joins, #20942 instead of waiting for failure detector to mark it as unreachable this will speed-up removal when restarting cluster node with same hostname:port
2016-08-19 11:56:55 +02:00
Patrik Nordwall
53d34f3b09
Merge pull request #20851 from ianclegg/19615-upgrade-to-camel-2.17.1
...
Make it possible to use both Camel 2.13.4 and 2.17.1 #19615
2016-08-19 11:16:02 +02:00
Patrik Nordwall
1bd1c79d1c
Merge pull request #21176 from abesanderson/feature-21163-optimize-rebalance-speed2
...
optimization to improve the time to rebalance shards
2016-08-19 10:17:56 +02:00
Kam Kasravi
438f489060
fixes #21193 Expose a number of GraphStage attributes
2016-08-18 10:01:43 -07:00
Johan Andrén
a81a61ba1f
Balancer should not push to a closed out #20943
2016-08-18 15:44:27 +02:00
Martynas Mickevičius
c8bcbc53dd
Merge pull request #21215 from lukasz-kusek/wip-21214-fix-akka-http-timeouts-documentation
...
=doc fix akka-http timeouts documentation #21214
2016-08-18 15:39:45 +02:00
Lukasz Kusek
b873536e68
=doc fix akka-http timeouts documentation #21214
...
change akka.http.http-connection-pool -> akka.http.host-connection-pool
2016-08-17 21:05:53 +01:00
Schmitt Christian
6021e00a15
removes a blocking InetSocketAddress call with createUnresolved #21149
2016-08-17 09:39:31 +02:00
Nafer Sanabria
90aba99340
=doc add missing module ( #21188 )
2016-08-16 15:22:05 +02:00
matsu-chara
1cb088ed81
fix eventbus doc-code ( #21189 )
...
remove `new AnyRef`
before:
```
new AnyRef {
class Listener extends Actor {
def receive = {
case m: Jazz => println(s"${self.path.name} is listening to: ${m.artist}")
case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
}
}
```
after:
```
class Listener extends Actor {
def receive = {
case m: Jazz => println(s"${self.path.name} is listening to: ${m.artist}")
case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
}
}
```
2016-08-16 15:20:44 +02:00
Hawstein
3e2bdb55a3
add extractActorSystem directive ( #21097 )
2016-08-16 14:59:05 +02:00
Hawstein
07c6332a22
!htc use correct rejection in http javadsl ( #21179 )
2016-08-15 17:32:01 +02:00
matsu-chara
d0eca7ef5d
remove duplicated sentences ( #21187 )
2016-08-15 17:25:08 +02:00
Alexander Golubev
d3cbcf9342
=str 21049 gaps in Source/Sink sections of stages-overview documentation
2016-08-12 17:32:21 -04:00
Nafer Sanabria
2f85cf0fb8
=str fix up Scaladocs for Source & Sink
2016-08-11 14:37:54 +02:00
Patrik Nordwall
614512f92b
Merge pull request #20525 from svezfaz/19872-actor-path-double-wildcard
...
double wildcard for actor deployment config #19872
2016-08-11 11:04:17 +02:00
Abe Sanderson
9c558016a2
optimization to improve the time to rebalance shards
2016-08-10 12:54:08 -06:00
Patrik Nordwall
d5f84d4ad8
Merge pull request #21141 from akka/wip-21053-NodeChurnSpec-patriknw
...
harden NodeChurnSpec, #21053
2016-08-10 14:22:30 +02:00
Patrik Nordwall
fd26a1f740
Merge pull request #21156 from akka/wip-suppress-InitJoin-patriknw
...
suppress deadletter for the cluster joining messages
2016-08-10 14:20:32 +02:00
Patrik Nordwall
79697b5c92
Merge pull request #21159 from akka/wip-20932-ReplicatorSpec-patriknw
...
increase test timeout in ReplicatorSpec, #20932
2016-08-10 14:20:09 +02:00
Mike Bryant
03923ca278
Correctly handle parsing of JSON strings containing single quotes #21147
2016-08-10 13:05:26 +02:00
Patrik Nordwall
a5df0d74e9
increase test timeout in CircuitBreakerSpec, #20982
2016-08-10 13:04:36 +02:00
Johan Andrén
fa02026079
Allow Java GraphStages to throw checked exception #21168
2016-08-10 13:02:15 +02:00
Johan Andrén
e912f80390
Fixes for the JsonFraming #21150 , #21154 and #21150
2016-08-10 12:59:52 +02:00
Kirill Plyashkevich
5caa23db97
ShardRestart shouldn't go to userspace #21145
...
Due to order in pattern match `ShardRestart` message can be received in user-defined `messageExtractorId` (when set via providing `MessageExtractor` which is not returning null in case of unknown messages).
To avoid this it's sufficient to only change the order in the pattern match.
Also added note to documentation for using `MessageExtractor` to clarify that it should return null in case of unhandled message.
2016-08-10 11:51:50 +02:00
svezfaz
05207a1cf6
double wildcard for actor deployment config #19872
2016-08-09 19:02:01 +01:00
Johan Andrén
22d669f7f0
More generous timeout in file upload sample spec #20727
2016-08-09 18:03:35 +02:00
Patrik Nordwall
beeb7fc807
increase test timeout in ReplicatorSpec, #20932
2016-08-09 17:35:49 +02:00
Patrik Nordwall
d731f20bf1
suppress deadletter for the cluster joining messages
2016-08-09 17:22:31 +02:00
Johan Andrén
92152edc89
Merge grabs empty input #21138
2016-08-09 17:16:11 +02:00
andreaTP
857308fc1a
=act change Unsubscribers visibility
2016-08-09 16:38:14 +02:00