Skip to content

Commit

Permalink
Merge branch 'master' into development/METROL-748
Browse files Browse the repository at this point in the history
  • Loading branch information
pwielders authored Aug 10, 2023
2 parents f4ff71f + e33b589 commit 4cc545c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion Compositor/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

add_subdirectory(compositortest)
option(BUILD_COMPOSITOR_TEST_CLIENT "Build compositor test client" OFF)
option(BUILD_COMPOSITOR_TEST_SERVER "Build compositor test server" OFF)

if (BUILD_COMPOSITOR_TEST_CLIENT)
add_subdirectory(compositortest)
endif()
if (BUILD_COMPOSITOR_TEST_SERVER)
add_subdirectory(compositorserver)
endif()


6 changes: 3 additions & 3 deletions Svalbard/CryptographyRPC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace Plugin {

config.FromString(framework->ConfigLine());

_cryptography = Cryptography::ICryptography::Instance("");
_cryptography = Exchange::ICryptography::Instance("");

Core::ProxyType<RPC::InvokeServer> server = Core::ProxyType<RPC::InvokeServer>::Create(&Core::IWorkerPool::Instance());

Expand All @@ -136,11 +136,11 @@ namespace Plugin {

BEGIN_INTERFACE_MAP(CryptographyImplementation)
INTERFACE_ENTRY(Exchange::IConfiguration)
INTERFACE_AGGREGATE(Cryptography::ICryptography, _cryptography)
INTERFACE_AGGREGATE(Exchange::ICryptography, _cryptography)
END_INTERFACE_MAP

private:
Cryptography::ICryptography* _cryptography;
Exchange::ICryptography* _cryptography;
ExternalAccess* _rpcLink;
};

Expand Down

0 comments on commit 4cc545c

Please sign in to comment.