File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed
Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 4141
4242 - uses : Swatinem/rust-cache@v2
4343
44- - name : Install native libs
45- run : sudo apt-get install -y libkrb5-dev
46-
4744 - name : build and lint with clippy
4845 run : cargo clippy --all-targets --features integration-test -- -D warnings
4946
8481 distribution : " temurin"
8582 java-version : " 17"
8683
87- - name : Install native libs
88- run : sudo apt-get install -y libkrb5-dev krb5-user
89-
90- - name : Download Hadoop
91- run : |
92- wget -q https://dlcdn.apache.org/hadoop/common/hadoop-3.4.0/hadoop-3.4.0.tar.gz
93- tar -xf hadoop-3.4.0.tar.gz -C $GITHUB_WORKSPACE
94- echo "$GITHUB_WORKSPACE/hadoop-3.4.0/bin" >> $GITHUB_PATH
95-
9684 - name : Run tests
9785 run : cargo test --features integration-test
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ impl HdfsObjectStore {
105105 /// use hdfs_native::ClientBuilder;
106106 /// # use hdfs_native_object_store::HdfsObjectStore;
107107 /// let client = ClientBuilder::new().with_url("hdfs://127.0.0.1:9000").build().unwrap();
108- /// let store = HdfsObjectStore::new(Arc::new( client) );
108+ /// let store = HdfsObjectStore::new(client);
109109 /// ```
110110 pub fn new ( client : Client ) -> Self {
111111 Self { client }
You can’t perform that action at this time.
0 commit comments