You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/04/17 22:54:29 UTC

[geode-native] branch develop updated: GEODE-4410: Fixes .NET compile with removed cache parameter.

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 737077a  GEODE-4410: Fixes .NET compile with removed cache parameter.
737077a is described below

commit 737077a5ed47ecbbc0798bc8397f95697c227c44
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Tue Apr 17 22:54:11 2018 +0000

    GEODE-4410: Fixes .NET compile with removed cache parameter.
---
 clicache/src/DistributedSystem.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clicache/src/DistributedSystem.cpp b/clicache/src/DistributedSystem.cpp
index 0a1dcab..e1b7d29 100644
--- a/clicache/src/DistributedSystem.cpp
+++ b/clicache/src/DistributedSystem.cpp
@@ -137,7 +137,7 @@ namespace Apache
 
         auto nativeDistributedSystem = native::DistributedSystem::create(marshal_as<std::string>(name),
                                                            config->GetNative());
-        nativeDistributedSystem.connect(cache->GetNative().get());
+        nativeDistributedSystem.connect();
 
         ManagedPostConnect(cache);
 

-- 
To stop receiving notification emails like this one, please contact
jbarrett@apache.org.