diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 493b42b..7ae4b39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,6 @@ jobs: uses: actions/checkout@v4 with: path: up-zenoh-example-cpp - repository: eclipse-uprotocol/up-zenoh-example-cpp - name: Fetch up-cpp conan recipe uses: actions/checkout@v4 @@ -39,7 +38,7 @@ jobs: - name: Build up-core-api conan recipe shell: bash run: | - conan create --version 1.6.0 up-conan-recipes/up-core-api/release + conan create --version 1.6.0-alpha4 --build=missing up-conan-recipes/up-core-api/release - name: Build up-cpp conan recipe shell: bash diff --git a/conanfile.txt b/conanfile.txt index ec056ee..c78bf93 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,7 +1,7 @@ [requires] up-cpp/[^1.0.1, include_prerelease] spdlog/[~1.13] -up-core-api/1.6.0 +up-core-api/1.6.0-alpha4 protobuf/[>=3.21.12] up-transport-socket-cpp/[>=1.0.0, include_prerelease] diff --git a/pubsub/src/UTransportDomainSockets.h b/pubsub/src/UTransportDomainSockets.h index eee63ce..c9dfec9 100644 --- a/pubsub/src/UTransportDomainSockets.h +++ b/pubsub/src/UTransportDomainSockets.h @@ -42,7 +42,7 @@ class UTransportDomainSockets : public transport::UTransport { void notifyListener(const v1::UMessage& message); void listenThread(); // listen for incoming messages (thread) - void cleanupListener(CallableConn listener) override {} + void cleanupListener(const CallableConn& listener) override {} }; // class UTransportDomainSockets #endif // UTRANSPORT_DOMAIN_SOCKETS_H \ No newline at end of file