diff --git a/internal/vfs/vfs.go b/internal/vfs/vfs.go index c312205e..1fcb01be 100644 --- a/internal/vfs/vfs.go +++ b/internal/vfs/vfs.go @@ -790,6 +790,12 @@ func (c *AzBlobFsConfig) isSameResource(other AzBlobFsConfig) bool { if c.Endpoint != other.Endpoint { return false } + if c.SASURL == nil { + c.SASURL = kms.NewEmptySecret() + } + if other.SASURL == nil { + other.SASURL = kms.NewEmptySecret() + } return c.SASURL.GetPayload() == other.SASURL.GetPayload() }