Commit graph

19483 commits

Author SHA1 Message Date
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
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
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
Johan Andrén
61f566063b named should not replace attributes #21068
Add attributes in named rather than replace, additionally: test coverage and missing method on RunnableGraph added
2016-08-09 15:11:59 +02:00
Johan Andrén
f1c589639c Bugfix #21130 remote-address support broken in server optimizations 2016-08-09 14:00:52 +02:00
Johan Andrén
ddb2218f0a Extra clarification and link to juc.ThreadPoolExecutor from docs #21109 2016-08-09 14:00:13 +02:00
Stefano Bonetti
16e3e01ba2 =doc websocket - amending streaming to streamed msgs #19945 2016-08-09 13:10:52 +02:00
abesanderson
24fc2c3134 check for non empty journal batch before sending to journal #21116 2016-08-09 10:15:07 +02:00
Patrik Nordwall
483d46ddd0 harden NodeChurnSpec, #21053 2016-08-08 17:50:24 +02:00
Adam Warski
033516b188 Adding ScalaDocs for FlowOps.async #21137 2016-08-08 16:11:59 +02:00
Stefano Bonetti
f150b23c59 =doc adding a note about websocket idle-timeout #19945 2016-08-08 16:00:04 +02:00
Schmitt Christian
b54616aa87 HttpMessage#header[Content-Type] should work #21127 2016-08-08 15:37:20 +02:00
Johan Andrén
4ca5635fde Don't mention akka.udp as a remote transport to use in the docs #21112 2016-08-08 12:52:25 +02:00
Josep Prat
7876ecc20a Fix typo docs inbox #21132 2016-08-08 12:13:55 +02:00
Shivansh Srivastava
25e4586aa0 [#21090] Added the improved code for loggingResponsetime and added the link in the docs (#21118)
* [#21090] Added the improved code for loggingResponsetime and added the link in the docs

* [#21090] Added javadocs for logRequestResponseTime

* [#21090] Removed the compilation error caused by the missing imports

* [#21090] Removed the compilation error caused by type

* [#21090] Improved the identation of the code

* [#21090] Improved the identation of the code

* [#21090] Removed the empty line

* [#21090] Refactored the documentation with clear explanations
2016-08-05 16:16:14 +02:00
Richard Imaoka
d1a9049fa0 Add samples to run HTTP and HTTPS servers in the same app #18551 (#21079) 2016-08-05 16:11:59 +02:00
Nafer Sanabria
e05d0fe290 Upgrade jackson-databind to 2.7.6 (#21113) 2016-08-05 16:10:28 +02:00
Konrad Malawski
86d733196c =pro make #21105 never ever happen again (OSGi breaking release) (#21121) 2016-08-04 13:14:30 +02:00
Johan Andrén
d3df2e5ed3 =act ByteString deserialization unbroken for large bytestrings #20901 (#21096) 2016-08-03 16:20:59 +02:00
Johan Andrén
baf0eb2510 Incorrect message for graceful shard region shutdown docs fixed #20764 2016-08-03 13:22:07 +02:00
skchrko
889e0ef42e Fix typos in "handling blocking operations" doc (#21099)
executer -> executor.
2016-08-03 13:06:35 +02:00
drewhk
c8026dc714 #20638: Harden TickSourceSpec (#21095) 2016-08-03 11:43:55 +02:00
Konrad Malawski
b005c906d9 Merge pull request #21104 from tginsberg/source-streaming-scala-typo
Fix typo in source-streaming-support #21103
2016-08-03 10:25:53 +02:00
drewhk
7a920e85ef Merge pull request #21094 from drewhk/downgrade-sbt-drewhk
Downgrading SBT until https://github.com/sbt/sbt/issues/2686 is fixed
2016-08-03 09:17:14 +02:00
Todd Ginsberg
974c2996e1 Fix typo in source-streaming-support #21103
+ The word "uding" should be "using"
2016-08-02 20:28:40 -05:00
Konrad Malawski
a712f0149a Merge pull request #20778 from ktoso/revival-of-the-undead-json-streaming-of-doom-ktoso
+htp #18837 JSON framing and framed entity streaming directives
2016-08-02 15:59:58 +02:00
Konrad Malawski
8a1f8f27dc =htc fix JsonFraming completion bug, exposed by new Interpreter 2016-08-02 15:58:34 +02:00
Konrad Malawski
3c2d021742 =htc improve patience on FramingSpec because Jenkins 2016-08-02 15:27:21 +02:00
Konrad Malawski
9cc32c3aba +htp #18837 completely rewrite EntityStreamingSupport
added CSV examples
updated docs
EntityStreamingSupport is now an entry point, to all streaming things
both read and write side use it
it's easy to extend as well
2016-08-02 15:27:21 +02:00