Commit graph

12980 commits

Author SHA1 Message Date
Patrik Nordwall
95366cb585 Wrap long lines, for pdf 2013-05-30 14:45:15 +02:00
Patrik Nordwall
7c1ab68263 Merge pull request #1505 from akka/wip-another-cluster-experimental-patriknw
remove unused pom.xml with akka-cluster-experimental ref
2013-05-30 05:25:03 -07:00
Björn Antonsson
279c601cca Merge pull request #1506 from akka/wip-3390-remotenodedeathwatch-failure-ban
Add a barrier in RemoteNodeDeathWatchSpec to compensate for connection time #3390
2013-05-30 05:21:22 -07:00
Björn Antonsson
3f158385b9 Add a barrier in RemoteNodeDeathWatchSpec to compensate for connection time. See #3390 2013-05-30 11:55:31 +02:00
Björn Antonsson
9d2677a4cf Merge pull request #1504 from akka/wip-2996-make-test-work-on-j9-ban
Make AkkaSpec getCallerName work on J9 #2996
2013-05-30 01:55:54 -07:00
Björn Antonsson
edd697a584 Merge pull request #1503 from akka/wip-3292-osgi-integration-test-ban
OSGi Make the integration test work again #3292
2013-05-30 01:40:29 -07:00
Patrik Nordwall
709a4a2868 remove unused pom.xml with akka-cluster-experimental ref 2013-05-30 08:21:30 +02:00
Björn Antonsson
b1170607a6 Make AkkaSpec getCallerName work on J9. See #2996 2013-05-30 07:48:53 +02:00
Roland Kuhn
9c89f170d2 Merge pull request #1490 from akka/wip-3377-Props.create-∂π
improve safety of Props.create by allowing Creator<T>, see #3377
2013-05-29 22:46:06 -07:00
Roland
f8fa825e48 improve safety of Props.create by allowing Creator<T>, see #3377
Props constructors need to be deprecated instead of being mutated
because we cannot just start throwing exceptions in people’s existing
code. Props.withCreator is deprecated for similar reasons, but also
because Props are about the creators, so replacing that after the fact
is not good style.
2013-05-29 23:40:27 +02:00
Björn Antonsson
9797e00f0c OSGi Make the integration test work again. See #3292
OSGi Adding ScalaBuff and removing experimental from cluster. See #3292
OSGi create bundle for ScalaBuff. See #3292
OSGi Make the integration test work again. See #3292
2013-05-29 22:27:24 +02:00
Patrik Nordwall
c5ce28da7f Merge pull request #1496 from akka/wip-3408-ClusterSingletonManager-leaving-order-patriknw
Fix exiting ordering problem in ClusterSingletonManager, see #3408
2013-05-29 07:30:59 -07:00
Patrik Nordwall
552ff9c84c Merge pull request #1497 from akka/wip-3409-CoordinatedIncrementSpec-patriknw
Increase ask timeout in CoordinatedIncrementSpec, see #3409
2013-05-29 07:24:36 -07:00
Patrik Nordwall
91716a5cf9 Merge pull request #1498 from akka/wip-3413-ConcurrentActivationTest-patriknw
Dilate ask timeout in ConcurrentActivationTest, see #3413
2013-05-29 07:23:53 -07:00
Patrik Nordwall
bcda4f7ab8 Merge pull request #1499 from akka/wip-fix-footnote-patriknw
Footnote breaks pdf generation
2013-05-29 06:30:38 -07:00
Patrik Nordwall
dfbf2eb96a Footnote breaks pdf generation 2013-05-29 15:03:15 +02:00
Patrik Nordwall
a7d57fd485 Merge pull request #1495 from akka/wip-3233-optimize-warn-patriknw
Warn about -optimize flag, see #3233
2013-05-29 04:44:53 -07:00
Patrik Nordwall
20d4a1dd0c Merge pull request #1494 from akka/wip-3331-upd-cluster-docs-patriknw
Mark not impl parts in Cluster Specification, see #3331
2013-05-29 03:01:25 -07:00
Patrik Nordwall
5cda24db07 Dilate ask timeout in ConcurrentActivationTest, see #3413 2013-05-29 11:47:38 +02:00
Patrik Nordwall
a525c52f35 Increase ask timeout in CoordinatedIncrementSpec, see #3409 2013-05-29 09:51:06 +02:00
Patrik Nordwall
146e2c0719 Fix exiting ordering problem in ClusterSingletonManager, see #3408
* The problem was:
  - first is leaving, second is new oldest
  - two actors subscribe to cluster events, OldestChangedBuffer and ClusterSingletonManager
  - ClusterSingletonManager receives MemberExited(first), and then also MemberRemoved(second)
    before OldestChangedBuffer receives MemberExited(first) and delivers
    OldestChanged(first->second)
  - MemberRemoved(second) is the result of the cluster extension shutdown
  - because ClusterSingletonManager gets the MemberRemoved(second) before the OldestChanged
    it will not send the hand over data to second
  - second becomes new singleton after retry period, as designed, but without hand over data
 * The solution is to check the selfExited flag in Oldest state, similar to what is done
   in WasOldest
 * I considered the alternative to tunnel all member events through same subscriber,
   but that would involve more changes to the code
2013-05-29 09:11:43 +02:00
Roland Kuhn
003588eef5 Merge pull request #1487 from akka/wip-3394-creationVsDispatcher-∂π
remove fallback to default-dispatcher, see #3394
2013-05-28 23:41:20 -07:00
Viktor Klang (√)
8e53a59e84 Merge pull request #1485 from akka/wip-3335-connect-timeout-√
#3335 - Adding connection timeout to TCP connections
2013-05-28 11:12:37 -07:00
Viktor Klang (√)
96c68b7bce Merge pull request #1493 from akka/wip-3405-fix-race-in-mpsc-√
#3405 - fix race between consumer and producer for MPSC
2013-05-28 11:11:45 -07:00
Viktor Klang
1f694a3612 #3405 - fix race between consumer and producer for MPSC 2013-05-28 16:54:58 +02:00
Patrik Nordwall
3250efedef Warn about -optimize flag, see #3233 2013-05-28 16:46:51 +02:00
Patrik Nordwall
bb030fa394 Mark not impl parts in Cluster Specification, see #3331 2013-05-28 16:24:30 +02:00
Patrik Nordwall
42224fbc28 Merge pull request #1492 from akka/wip-getting-started-patriknw
Getting started link to Activator
2013-05-28 07:18:16 -07:00
Patrik Nordwall
933c067a88 Merge pull request #1491 from akka/wip-3272-must-should-patriknw
Remove redundant should/must in tests, see #3272
2013-05-28 07:17:43 -07:00
Patrik Nordwall
852be1b9bb Merge pull request #1489 from akka/wip-3192-fixme-patriknw
FIXME in cluster, see #3192
2013-05-28 07:17:16 -07:00
Patrik Nordwall
ae9d28d8c3 Merge pull request #1486 from akka/wip-3348-ClusterStats-patriknw
Disable cluster stats by default, see #3348
2013-05-28 07:16:44 -07:00
Patrik Nordwall
a323936299 Disable cluster stats by default, see #3348
* Add VectorClockStats
2013-05-28 16:15:57 +02:00
Roland Kuhn
a4af04ca09 Merge pull request #1484 from akka/wip-3192-FIXMEs-∂π
fix some FIXMEs, see #3192
2013-05-28 06:57:07 -07:00
Roland Kuhn
a5364fc496 Merge pull request #1488 from akka/wip-3393-Trigger-NPE-∂π
do not close over context.self in TickGenerator, see #3393
2013-05-28 06:41:40 -07:00
Roland
f802c94b9b remove fallback to default-dispatcher, see #3394 2013-05-28 15:40:00 +02:00
Björn Antonsson
6ec9d932dd Merge pull request #1481 from akka/wip-3341-split-out-mailbox-documentation-ban
Split mailbox documentation into a separate section #3341
2013-05-28 06:29:28 -07:00
Viktor Klang
15039a846f #3335 - Adding connection timeout to TCP connections 2013-05-28 15:21:02 +02:00
Patrik Nordwall
ccab91691d Getting started link to Activator 2013-05-28 13:40:00 +02:00
Roland
0e8b45a8fe === was not testing what it thought it did 2013-05-28 13:35:37 +02:00
Björn Antonsson
6abec367f2 Split mailbox documentation into a separate section. See #3341 2013-05-28 13:34:35 +02:00
Roland
d10281d0e4 fix some FIXMEs, see #3192
- remove some outdated ones (which were already fixed but not removed)
- make socket options fully configurable in NettyTransport
- also apply socket options to outbound connections, not only the listen
  socket
- remove timeout from taking the lock in RepointableActorRef, because we
  cannot afford to lose system messages anymore, so we should rather
  block the sender
2013-05-28 13:29:09 +02:00
Roland
7c8f3ade69 add supported zeromq version information in docs 2013-05-28 13:02:03 +02:00
Patrik Nordwall
53728312e9 Remove redundant should/must in tests, see #3272 2013-05-28 12:16:31 +02:00
Patrik Nordwall
23e76c35d5 Merge pull request #1375 from mjkrumlauf/master
#3272 - Eliminate redundant "should" in DataflowSpec test output
2013-05-28 02:54:36 -07:00
Patrik Nordwall
196a141976 FIXME in cluster, see #3192 2013-05-28 09:02:03 +02:00
Roland
8c8cdecc68 do not close over context.self in TickGenerator, see #3393 2013-05-27 20:27:56 +02:00
Roland Kuhn
58756be937 Merge pull request #1483 from akka/wip-IO-docs-∂π
several things IO
2013-05-27 05:27:18 -07:00
Roland
caab7909d7 a few fixes after review of the IO doc changes 2013-05-27 14:26:34 +02:00
Patrik Nordwall
1b9fde8c02 Merge pull request #1475 from akka/wip-3178-err-msg-router-patriknw
Include path in error message for missing router conf, see #3178
2013-05-27 02:31:30 -07:00
Viktor Klang (√)
8e54ff4722 Merge pull request #1482 from akka/wip-3378-fix-memory-leak-in-lars-stop-√
#3378 - fixing memory leak in LARS.stop
2013-05-27 01:54:25 -07:00