Skip to content

Commit f216d49

Browse files
committed
Set lookup to false by default
1 parent 67e8859 commit f216d49

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The second thing we have to do is add the spawn dependency to the project.
9494
<dependency>
9595
<groupId>com.github.eigr</groupId>
9696
<artifactId>spawn-java-std-sdk</artifactId>
97-
<version>v1.2.1</version>
97+
<version>v1.2.2</version>
9898
</dependency>
9999
```
100100
We're also going to configure a few things for our application build to work, including compiling the protobuf files.
@@ -128,7 +128,7 @@ See below a full example of the pom.xml file:
128128
<dependency>
129129
<groupId>com.github.eigr</groupId>
130130
<artifactId>spawn-java-std-sdk</artifactId>
131-
<version>v1.2.1</version>
131+
<version>v1.2.2</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>ch.qos.logback</groupId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>io.eigr.spawn</groupId>
55
<artifactId>spawn-java-std-sdk</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.2.1</version>
7+
<version>1.2.2</version>
88
<name>spawn-java-std-sdk</name>
99
<url>http://maven.apache.org</url>
1010

src/main/java/io/eigr/spawn/api/ActorIdentity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static ActorIdentity of(String system, String name) {
3030
}
3131

3232
public static ActorIdentity of(String system, String name, String parent) {
33-
return new ActorIdentity(system, name, parent, true);
33+
return new ActorIdentity(system, name, parent, false);
3434
}
3535

3636
public static ActorIdentity of(String system, String name, boolean lookup) {

0 commit comments

Comments
 (0)