소스 검색

feat(plugin): Make the hash-map Nodestore the default

Julius Pfrommer 5 년 전
부모
커밋
0e05495317
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugins/ua_config_default.c

+ 1 - 1
plugins/ua_config_default.c

@@ -44,7 +44,7 @@ UA_Server_new() {
     memset(&config, 0, sizeof(UA_ServerConfig));
     /* Set a default logger and NodeStore for the initialization */
     config.logger = UA_Log_Stdout_;
-    UA_Nodestore_ZipTree(&config.nodestore);
+    UA_Nodestore_HashMap(&config.nodestore);
     return UA_Server_newWithConfig(&config);
 }