util: remove unused context.Context parameter from GetPoolID()

Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
Niels de Vos
2020-05-14 13:23:55 +02:00
committed by mergify[bot]
parent c9b4ee42e0
commit 08144df2a8
2 changed files with 4 additions and 4 deletions

View File

@ -145,7 +145,7 @@ func GenerateVolID(ctx context.Context, monitors string, cr *Credentials, locati
var err error
if locationID == InvalidPoolID {
locationID, err = GetPoolID(ctx, monitors, cr, pool)
locationID, err = GetPoolID(monitors, cr, pool)
if err != nil {
return "", err
}