Skip to content

Commit fff24c1

Browse files
authored
Core 1.4.2 (#11)
* Core 1.4.2 * Core 1.4.2
1 parent 6b1e177 commit fff24c1

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5252
<maven.compiler.source>1.8</maven.compiler.source>
5353
<maven.compiler.target>1.8</maven.compiler.target>
54-
<bullet.core.version>1.3.1</bullet.core.version>
54+
<bullet.core.version>1.4.2</bullet.core.version>
5555
<pulsar.client.version>2.2.1</pulsar.client.version>
5656
</properties>
5757

src/test/java/com/yahoo/bullet/pulsar/PulsarConfigTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/

src/test/java/com/yahoo/bullet/pulsar/PulsarPubSubTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/

src/test/java/com/yahoo/bullet/pulsar/PulsarQueryPublisherTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/
@@ -44,7 +44,7 @@ public void testSend() throws Exception {
4444
Mockito.doReturn(null).when(producer).sendAsync(arg.capture());
4545

4646
PulsarQueryPublisher publisher = new PulsarQueryPublisher(sharedPulsarClient, null, "queryTopicName", "responseTopicName");
47-
publisher.send("id", "hello world".getBytes(PubSubMessage.CHARSET));
47+
publisher.send("id", "hello world");
4848

4949
PubSubMessage pubSubMessage = SerializerDeserializer.fromBytes(arg.getValue());
5050
Assert.assertEquals(pubSubMessage.getId(), "id");

src/test/java/com/yahoo/bullet/pulsar/PulsarResponsePublisherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/

src/test/java/com/yahoo/bullet/pulsar/PulsarSubscriberTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/

src/test/java/com/yahoo/bullet/pulsar/SharedPulsarClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018, Oath Inc.
2+
* Copyright 2018, Yahoo Inc.
33
* Licensed under the terms of the Apache License, Version 2.0.
44
* See the LICENSE file associated with the project for terms.
55
*/

0 commit comments

Comments
 (0)