diff --git a/.github/workflows/cpp_sdk_workflow.yml b/.github/workflows/cpp_sdk_workflow.yml index 757bd77a..03134e76 100644 --- a/.github/workflows/cpp_sdk_workflow.yml +++ b/.github/workflows/cpp_sdk_workflow.yml @@ -120,7 +120,7 @@ jobs: steps: - name: replace nodes run: | - rm -rf /__e/node20 + sudo rm -rf /__e/node20 echo "#### nodes list: "`ls /__e/node*` cd /__e/ ln -s /__e/node16 node20 - uses: actions/checkout@v3 diff --git a/cpp/vcpkg-configuration.json b/cpp/vcpkg-configuration.json index 041fb540..3c205926 100644 --- a/cpp/vcpkg-configuration.json +++ b/cpp/vcpkg-configuration.json @@ -2,8 +2,8 @@ "registries": [ { "kind": "git", - "repository": "https://mirror.ghproxy.com/github.com/FISCO-BCOS/registry", - "baseline": "45b6c6312e9a0feeb1ff408b8ebcddcfd160614b", + "repository": "https://github.com/FISCO-BCOS/registry", + "baseline": "535c4fc74badd509b94e8a736452fa8a76bff944", "packages": [ "openssl", "bcos-utilities", diff --git a/cpp/wedpr-storage/ppc-storage/src/hdfs/HDFSStorage.cpp b/cpp/wedpr-storage/ppc-storage/src/hdfs/HDFSStorage.cpp index 07413312..e536433d 100644 --- a/cpp/wedpr-storage/ppc-storage/src/hdfs/HDFSStorage.cpp +++ b/cpp/wedpr-storage/ppc-storage/src/hdfs/HDFSStorage.cpp @@ -71,7 +71,7 @@ HDFSStorage::HDFSStorage(FileStorageConnectionOption::Ptr const& _option) if (_option->authConfig) { // set auth type to Kerberos - hdfsBuilderConfSetStr(m_builder.get(), "hadoop.security.authentication", "Kerberos"); + hdfsBuilderConfSetStr(m_builder.get(), "hadoop.security.authentication", "kerberos"); // init and store the auth information into the cache auto ctx = std::make_shared(_option->authConfig); ctx->init();