Skip to content

Commit 0f34b05

Browse files
committed
chore: add stream sorter example to ci
Signed-off-by: Yashash H L <[email protected]>
1 parent dc7c4ea commit 0f34b05

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-push.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
"batch-map-flatmap", "mapt-event-time-filter-function", "flat-map-stream", "map-flatmap",
2020
"even-odd", "simple-sink", "reduce-sum", "reduce-stream-sum",
2121
"map-forward-message", "reduce-counter", "sideinput-example",
22-
"udf-sideinput-example", "source-simple-source", "session-reduce-count"
22+
"udf-sideinput-example", "source-simple-source", "session-reduce-count", "stream-sorter"
2323
]
2424

2525
steps:

examples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@
360360
</configuration>
361361
</execution>
362362
<execution>
363-
<id>accumulator-stream-sorter</id>
363+
<id>stream-sorter</id>
364364
<phase>package</phase>
365365
<goals>
366366
<goal>dockerBuild</goal>
@@ -376,7 +376,7 @@
376376
</container>
377377
<to>
378378
<image>
379-
numaflow-java-examples/accumulator-stream-sorter:${docker.tag}
379+
numaflow-java-examples/stream-sorter:${docker.tag}
380380
</image>
381381
</to>
382382
</configuration>

src/main/java/io/numaproj/numaflow/sourcer/Server.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Server {
2626
/**
2727
* constructor to create gRPC server.
2828
*
29-
* @param sourcer Sourcer interface
29+
* @param sourcer {@link Sourcer} interface
3030
*/
3131
public Server(Sourcer sourcer) {
3232
this(sourcer, GRPCConfig.defaultGrpcConfig());
@@ -35,8 +35,8 @@ public Server(Sourcer sourcer) {
3535
/**
3636
* constructor to create gRPC server with gRPC config.
3737
*
38-
* @param grpcConfig to configure the max message size for grpc
39-
* @param sourcer Sourcer interface
38+
* @param grpcConfig {@link GRPCConfig} to configure the max message size for grpc
39+
* @param sourcer {@link Sourcer} interface
4040
*/
4141
public Server(Sourcer sourcer, GRPCConfig grpcConfig) {
4242
this.shutdownSignal = new CompletableFuture<>();

0 commit comments

Comments
 (0)