mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
Merge pull request #8627 from weirddan455/jboss
Change from jboss to java serialization (fixes #8609)
This commit is contained in:
commit
53def4155b
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ public class Connection {
|
||||||
// private boolean confirmEmptyManaPool;
|
// private boolean confirmEmptyManaPool;
|
||||||
// private String flagName;
|
// private String flagName;
|
||||||
// private UserSkipPrioritySteps userSkipPrioritySteps;
|
// private UserSkipPrioritySteps userSkipPrioritySteps;
|
||||||
private static final String serialization = "?serializationtype=jboss";
|
private static final String serialization = "?serializationtype=java";
|
||||||
private static final String transport = "bisocket";
|
private static final String transport = "bisocket";
|
||||||
private static final String threadpool = "onewayThreadPool=mage.remote.CustomThreadPool";
|
private static final String threadpool = "onewayThreadPool=mage.remote.CustomThreadPool";
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class ConnectionTest {
|
||||||
void serialisation() {
|
void serialisation() {
|
||||||
final String query = make(testeeBuilder).getQuery();
|
final String query = make(testeeBuilder).getQuery();
|
||||||
|
|
||||||
assertThat(query).contains("serializationtype=jboss");
|
assertThat(query).contains("serializationtype=java");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in a new issue