Skip to content

Commit

Permalink
Merge pull request #22 from medizininformatik-initiative/release-v0.2.1
Browse files Browse the repository at this point in the history
Release v0.2.1
  • Loading branch information
bastianschaffer authored Feb 16, 2024
2 parents ae60e9a + 0ab2d73 commit 358c555
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
### Security

## [0.2.1] - 2024-02-16

### Fixed
- History test table does not show last 14 days ([#19](https://github.com/medizininformatik-initiative/feasibility-monitoring/issues/19))

## [0.2.0] - 2024-01-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
feasibility-test-client:
image: ghcr.io/medizininformatik-initiative/feasibility-monitoring:0.2.0
image: ghcr.io/medizininformatik-initiative/feasibility-monitoring:0.2.1
environment:
- BACKEND_BASE_URL=${BACKEND_BASE_URL:-"https://localhost/api/v1"}
- BACKEND_CLIENT_ID=${BACKEND_CLIENT_ID:-""}
Expand Down
3 changes: 1 addition & 2 deletions src/py/execute_feasibility_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import json
import yaml
import time
import sys
import os


Expand Down Expand Up @@ -295,7 +294,7 @@ def execute_history_query(backend_base_url, backend_client_id, client_secret, ke

update_and_save_history_report(history_report, converted_result)

history_table = convert_to_table(history_report["reports"][-int(history_table_len):], "date")
history_table = convert_to_table(history_report["reports"][:int(history_table_len)], "date")
logging.info(history_table)

if send_results_confluence:
Expand Down
2 changes: 1 addition & 1 deletion src/py/execute_ping_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def execute_ping_task(dsf_base_url, wait_result_secs_ping, b_send_results_conflu

res = requests.post(f'{dsf_base_url}/Task', headers=header,
cert=(dsf_cert_path, dsf_key_path), data=ping_task)

logging.debug(f'Response from DSF sending Ping: {res.text}')
ping_task_id = res.json()['id']

Expand Down

0 comments on commit 358c555

Please sign in to comment.