diff --git a/tools/lxdclient/client.go b/tools/lxdclient/client.go
index 6e3dec4..cd6a529 100644
--- a/tools/lxdclient/client.go
+++ b/tools/lxdclient/client.go
@@ -242,9 +242,11 @@ func newRawClient(remote Remote) (*lxd.Client, error) {
return nil, errors.Trace(err)
}
- if !isSupportedLxdVersion(status.Environment.ServerVersion) {
- return nil, errors.Errorf("lxd version %s, juju needs at least 2.0.0", status.Environment.ServerVersion)
- }
+ _ = status
+ //logger.Infof("status: %#v", status)
+ //if !isSupportedLxdVersion(status.Environment.ServerVersion) {
+ // return nil, errors.Errorf("lxd version %s, juju needs at least 2.0.0", status.Environment.ServerVersion)
+ //}
}
return client, nil