Skip to content

Commit

Permalink
Switch to working version again, and change to more reasonable order
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-phaf committed Sep 11, 2023
1 parent 7ff53cd commit 633d415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- name: Start docker stack
run: docker compose up -d

- name: Test client runs without errors
run: docker compose run --rm client

- name: Test loader runs without errors
run: docker compose run --rm loader

- name: Test client runs without errors
run: docker compose run --rm client

- name: Cleanup
if: always()
run: docker compose down --volumes
1 change: 0 additions & 1 deletion examples/clients/python/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def callGetObservations(stub):
with grpc.insecure_channel(f"{os.getenv('DSHOST', 'localhost')}:{os.getenv('DSPORT', '50050')}") as channel:
stub = dstore_grpc.DatastoreStub(channel)

callAddTimeSeries(stub)
callAddTimeSeries(stub)
callPutObservations(stub)
response = callGetObservations(stub)
Expand Down

0 comments on commit 633d415

Please sign in to comment.