Skip to content

Commit

Permalink
label value as long
Browse files Browse the repository at this point in the history
  • Loading branch information
edman124 committed Jan 22, 2024
1 parent 61da1dd commit 16029cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ public void testReportWorkerMessage() throws Exception {
new StreamingScalingReport()
.setActiveThreadCount(1)
.setActiveBundleCount(2)
.setOutstandingBytes(3)
.setOutstandingBytes(3L)
.setMaximumThreadCount(4)
.setMaximumBundleCount(5)
.setMaximumBytes(6);
.setMaximumBytes(6L);
WorkUnitClient client = new DataflowWorkUnitClient(pipelineOptions, LOG);
WorkerMessage msg = client.createWorkerMessageFromStreamingScalingReport(activeThreadsReport);
client.reportWorkerMessage(msg);
Expand Down

0 comments on commit 16029cf

Please sign in to comment.