Skip to content

Commit 96e02b7

Browse files
author
Sophia Tevosyan
committed
fixing the build errors
1 parent 29055a2 commit 96e02b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/com/microsoft/durabletask/DurableTaskGrpcClientFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ private DurableTaskGrpcClientFactory() {
1414
}
1515

1616
public static DurableTaskClient getClient(int port, String defaultVersion) {
17-
return portToClientMap.computeIfAbsent(port, DurableTaskGrpcClient::new);
17+
return portToClientMap.computeIfAbsent(port, p -> new DurableTaskGrpcClient(p, defaultVersion));
1818
}
1919
}

0 commit comments

Comments
 (0)