Skip to content

Commit

Permalink
Fix failing Test due to GRPC Lib Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wba2hi committed May 8, 2024
1 parent 77a8458 commit 302dd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kuksa-client/kuksa_client/grpc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def from_message(cls, message: types_pb2.Datapoint):
timestamp = message.timestamp.ToDatetime(
tzinfo=datetime.timezone.utc,
)
except OverflowError:
except ValueError:

logger.error("Timestamp %d out of accepted range, value ignored!",
message.timestamp.seconds)
Expand Down

0 comments on commit 302dd62

Please sign in to comment.