azure: Pass data length to Azure libray

The azureAdapter was used directly without a pointer, but the Len()
method was only defined with a pointer receiver (which means Len() is
not present on a azureAdapter{}, only on a pointer to it).
This commit is contained in:
Alexander Neumann 2021-01-29 21:08:41 +01:00
parent bbdf18c4a2
commit cdd704920d
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ type azureAdapter struct {
func (azureAdapter) Close() error { return nil }
func (a *azureAdapter) Len() int {
func (a azureAdapter) Len() int {
return int(a.Length())
}