Skip to content

Commit

Permalink
fix: CARLOS-DEVICE-1 (#58)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
flxdot and github-actions[bot] authored May 2, 2024
1 parent 08f741d commit c962b62
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ async def stage_timeseries_data(
staged_rows = (await connection.execute(staged_query)).all()

for row in staged_rows:
if row.timeseries_id not in payload.data:
payload.data[row.timeseries_id] = DriverTimeseries(
if row.server_timeseries_id not in payload.data:
payload.data[row.server_timeseries_id] = DriverTimeseries(
timestamps_utc=[], values=[]
)
dt = payload.data[row.server_timeseries_id]
Expand Down
4 changes: 2 additions & 2 deletions lib/py_edge_device/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "carlos.edge.device"
version = "0.1.14"
version = "0.1.15"
description = "The library for the edge device of the carlos project."
authors = ["Felix Fanghanel"]
license = "MIT"
Expand Down Expand Up @@ -35,7 +35,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.bumpversion]
current_version = "0.1.14"
current_version = "0.1.15"
commit = true
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<prerelease>[a-z0-9\\.]+))?"
Expand Down
2 changes: 1 addition & 1 deletion lib/py_edge_server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/device/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c962b62

Please sign in to comment.