Skip to content

Commit c5ea8bd

Browse files
committed
fix(batch): remove redundat parameter from Event.Started
1 parent f29a274 commit c5ea8bd

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

  • src/main/java/io/weaviate/client6/v1/api/collections/batch

src/main/java/io/weaviate/client6/v1/api/collections/batch/Event.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import java.util.Collection;
66
import java.util.List;
77
import java.util.Map;
8-
import java.util.OptionalInt;
98

109
import io.grpc.Status;
1110
import io.weaviate.client6.v1.api.collections.batch.Event.Acks;
@@ -26,11 +25,8 @@ sealed interface Event
2625

2726
/**
2827
* The server has acknowledged our Start message and is ready to receive data.
29-
*
30-
* @param reconnectAfterSeconds Delay in seconds after which
31-
* the stream should be renewed.
3228
*/
33-
record Started(OptionalInt reconnectAfterSeconds) implements Event {
29+
record Started() implements Event {
3430
}
3531

3632
/**

0 commit comments

Comments
 (0)