Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Mar 29, 2022
1 parent b1f9d92 commit 5774173
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion deploy/image/irods_csi_driver_pool_build.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LABEL description="iRODS FUSE Lite Pool Server Build Image"
WORKDIR /opt/
RUN git clone https://github.com/cyverse/irodsfs-pool.git
WORKDIR /opt/irodsfs-pool
RUN git checkout tags/v0.3.5
RUN git checkout tags/v0.4.0

# Build
RUN make build
2 changes: 1 addition & 1 deletion deploy/image/irods_fuse_build.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ LABEL description="iRODS FUSE Lite Build Image"
WORKDIR /opt/
RUN git clone https://github.com/cyverse/irodsfs.git
WORKDIR /opt/irodsfs
RUN git checkout tags/v0.5.5
RUN git checkout tags/v0.6.0

# Build
RUN make build
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.14

require (
github.com/container-storage-interface/spec v1.2.0
github.com/cyverse/go-irodsclient v0.7.5
github.com/cyverse/go-irodsclient v0.8.0
github.com/golang/protobuf v1.5.2 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/rs/xid v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnht
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
github.com/container-storage-interface/spec v1.2.0 h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=
github.com/container-storage-interface/spec v1.2.0/go.mod h1:6URME8mwIBbpVyZV93Ce5St17xBiQJQY67NDsuohiy4=
github.com/cyverse/go-irodsclient v0.7.5 h1:i8ejL87qqQ04kLEZeAAg34l+nQLI9Ykjd+nYJZ2C+0o=
github.com/cyverse/go-irodsclient v0.7.5/go.mod h1:vEllPYPlJhNUp/op6e4/zDKt/wOIeN8Y7Nyy4QpR/F0=
github.com/cyverse/go-irodsclient v0.8.0 h1:mYlycwogpmU3fFv2fipUxR+cJpF09FomiVyeQB/5u30=
github.com/cyverse/go-irodsclient v0.8.0/go.mod h1:vEllPYPlJhNUp/op6e4/zDKt/wOIeN8Y7Nyy4QpR/F0=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
6 changes: 3 additions & 3 deletions pkg/driver/irods_operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const (

// IRODSMkdir creates a new directory
func IRODSMkdir(conn *IRODSConnectionInfo, path string) error {
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password)
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password, "")
if err != nil {
return err
}
Expand All @@ -30,7 +30,7 @@ func IRODSMkdir(conn *IRODSConnectionInfo, path string) error {

// IRODSRmdir deletes a directory
func IRODSRmdir(conn *IRODSConnectionInfo, path string) error {
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password)
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password, "")
if err != nil {
return err
}
Expand All @@ -47,7 +47,7 @@ func IRODSRmdir(conn *IRODSConnectionInfo, path string) error {

// IRODSTestConnection just test connection creation
func IRODSTestConnection(conn *IRODSConnectionInfo) error {
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password)
account, err := irodsclient_types.CreateIRODSProxyAccount(conn.Hostname, conn.Port, conn.ClientUser, conn.Zone, conn.User, conn.Zone, irodsclient_types.AuthSchemeNative, conn.Password, "")
if err != nil {
return err
}
Expand Down

0 comments on commit 5774173

Please sign in to comment.