Skip to content

Commit

Permalink
fix: display correct sm bandwidth in bytes/sec (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
saranyailla authored Jun 27, 2024
1 parent 30e4571 commit 57e303a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ test("Service item points to the right href", () => {
.findBodyCell(1, 2)!
.getElement()!
.firstElementChild!
.firstElementChild!
.getAttribute("href")
).toEqual(SERVICE_ROUTE_HREF_PREFIX + fullRangeList[0].name);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ function StreamManager() {
JVM_ARGS: jvmArgs,
LOG_LEVEL: logLevel,
STREAM_MANAGER_AUTHENTICATE_CLIENT: streamManagerAuthenticateClient,
STREAM_MANAGER_EXPORTER_MAX_BANDWIDTH: formatBytes(parseInt(streamManagerExporterMaxBandwidth || "0", 10)) + "/s",
STREAM_MANAGER_EXPORTER_MAX_BANDWIDTH: formatBytes(parseInt(streamManagerExporterMaxBandwidth || "0", 10)*1024/8) + "/s",
STREAM_MANAGER_EXPORTER_S3_DESTINATION_MULTIPART_UPLOAD_MIN_PART_SIZE_BYTES: formatBytes(parseInt(streamManagerS3UploadMinPart || "0", 10)),
STREAM_MANAGER_SERVER_PORT: streamManagerServerPort,
STREAM_MANAGER_STORE_ROOT_DIR: streamManagerStoreRootDir,
Expand Down

0 comments on commit 57e303a

Please sign in to comment.