-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[gluster6] fails to compile because of glusterfs API incompatibility #37
Comments
Steps to reproduce. In docker
FROM ubuntu:22.04 AS base
RUN apt-get update
RUN apt-get install -y golang-go pkg-config libglusterfs-dev uuid-dev ca-certificates
WORKDIR /src
COPY . .
RUN go build .
package main
import "github.com/gluster/gogfapi/gfapi"
func main() {
vol := &gfapi.Volume{}
vol.Init("test", "gluster1");
vol.Mount();
defer vol.Unmount()
} go mod init test
docker buildx build . |
Hi, sorry for commenting on this old issue, but I found the same problem trying to build a glusterfs docker plugin, any news on the solution? thanks
|
Trying to use gogfapi at fedora and it fails:
It looks like gluster6 changes their API.
Are there any plans to adapt to the newer interfaces ?
The text was updated successfully, but these errors were encountered: