Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/L2-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:

- name: Start mock-xconf service
run: |
docker run -d --name mockxconf -p 50050:50050 -p 50051:50051 -p 50052:50052 -v ${{ github.workspace }}:/mnt/L2_CONTAINER_SHARED_VOLUME ghcr.io/rdkcentral/docker-device-mgt-service-test/mockxconf:latest
docker run -d --name mockxconf -p 50050:50050 -p 50051:50051 -p 50052:50052 -e ENABLE_MTLS=true -v ${{ github.workspace }}:/mnt/L2_CONTAINER_SHARED_VOLUME ghcr.io/rdkcentral/docker-device-mgt-service-test/mockxconf:latest

- name: Copy xconf-dcm-response2 json to mockxconf service
run: |
docker cp ${{ github.workspace }}/test/test-artifacts/mockxconf/xconf-dcm-response2.json mockxconf:/etc/xconf/xconf-dcm-response2.json

- name: Start l2-container service
run: |
docker run -d --name native-platform --link mockxconf -v ${{ github.workspace }}:/mnt/L2_CONTAINER_SHARED_VOLUME ghcr.io/rdkcentral/docker-device-mgt-service-test/native-platform:latest
docker run -d --name native-platform --link mockxconf -e ENABLE_MTLS=true -v ${{ github.workspace }}:/mnt/L2_CONTAINER_SHARED_VOLUME ghcr.io/rdkcentral/docker-device-mgt-service-test/native-platform:latest

- name: Enter Inside Platform native container and run L2 Test
run: |
Expand Down
4 changes: 2 additions & 2 deletions source/protocol/http/curlinterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ T2ERROR sendReportOverHTTP(char *httpUrl, char *payload)

if(ret == T2ERROR_SUCCESS)
{
T2Info("Report Sent Successfully over HTTP using connection pool\n");
T2Debug("Report Sent Successfully over HTTP\n");
}
else
{
T2Error("Failed to send report using connection pool\n");
T2Error("Failed to send report\n");
}

T2Debug("%s --out\n", __FUNCTION__);
Expand Down
Loading
Loading