Skip to content

Commit 02e2c4e

Browse files
Add ChipLogProgress to both mQueryDelegate and mResponseDelegate
1 parent 1c2ad2e commit 02e2c4e

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/examples-linux-tv-casting-app.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
# TODO: this test is flaky and was disabled
7676
# https://github.com/project-chip/connectedhomeip/issues/34598
7777
#
78-
# - name:
79-
# Test casting from Linux tv-casting-app to Linux tv-app -
80-
# Commissioner Generated Passcode
81-
# run: |
82-
# ./scripts/run_in_build_env.sh \
83-
# "python3 ./scripts/tests/run_tv_casting_test.py --commissioner-generated-passcode=True"
84-
# timeout-minutes: 2 # Comment this out to debug if GitHub Action times out.
78+
- name:
79+
Test casting from Linux tv-casting-app to Linux tv-app -
80+
Commissioner Generated Passcode
81+
run: |
82+
./scripts/run_in_build_env.sh \
83+
"python3 ./scripts/tests/run_tv_casting_test.py --commissioner-generated-passcode=True"
84+
timeout-minutes: 2 # Comment this out to debug if GitHub Action times out.
8585

8686
- name: Uploading Size Reports
8787
uses: ./.github/actions/upload-size-reports

src/lib/dnssd/MinimalMdnsServer.h

+4
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,19 @@ class GlobalMinimalMdnsServer : public mdns::Minimal::ServerDelegate
6565
{
6666
if (mQueryDelegate != nullptr)
6767
{
68+
ChipLogProgress(Discovery, "SHAO before mQueryDelegate->OnMdnsPacketData fn call");
6869
mQueryDelegate->OnMdnsPacketData(data, info);
70+
ChipLogProgress(Discovery, "SHAO after mQueryDelegate->OnMdnsPacketData fn call");
6971
}
7072
}
7173

7274
void OnResponse(const mdns::Minimal::BytesRange & data, const chip::Inet::IPPacketInfo * info) override
7375
{
7476
if (mResponseDelegate != nullptr)
7577
{
78+
ChipLogProgress(Discovery, "SHAO before mResponseDelegate->OnMdnsPacketData fn call");
7679
mResponseDelegate->OnMdnsPacketData(data, info);
80+
ChipLogProgress(Discovery, "SHAO after mResponseDelegate->OnMdnsPacketData fn call");
7781
}
7882
}
7983

0 commit comments

Comments
 (0)