Skip to content

Commit 3bee8fe

Browse files
authored
fix missing cli version when using grpcserver (#1711)
1 parent 98e363d commit 3bee8fe

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

wandb/server/grpc_server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import time
1010

1111
import grpc
12+
import wandb
1213
from wandb import wandb_sdk
1314
from wandb.proto import wandb_internal_pb2 # type: ignore
1415
from wandb.proto import wandb_server_pb2 # type: ignore
@@ -27,6 +28,7 @@ def RunUpdate(self, run_data, context): # noqa: N802
2728
run_data.run_id = wandb_sdk.lib.runid.generate_id()
2829
# Record telemetry info about grpc server
2930
run_data.telemetry.feature.grpc = True
31+
run_data.telemetry.cli_version = wandb.__version__
3032
result = self._backend._interface._communicate_run(run_data)
3133

3234
# initiate run (stats and metadata probing)

0 commit comments

Comments
 (0)