Skip to content
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

Index.Exists doesn't accept options (and so context) #710

Open
k20human opened this issue Jan 4, 2023 · 3 comments
Open

Index.Exists doesn't accept options (and so context) #710

k20human opened this issue Jan 4, 2023 · 3 comments

Comments

@k20human
Copy link

k20human commented Jan 4, 2023

  • Algolia Client Version: 3.26.1

Description

Currently the function index.Exists doesn't accept options like other functions.

We use opts to pass the current context. With a custom Requester (http.client) it's allow us to do tracing.
Without opts we can trace correctly this Exists function 😞

Is it possible to add opts on Exists function, like this ?

func (i *Index) Exists(opts ...interface{}) (bool, error) {
	_, err := i.GetSettings(opts)
	if err == nil {
		return true, nil
	}
	if _, ok := errs.IsAlgoliaErrWithCode(err, http.StatusNotFound); ok {
		return false, nil
	}
	return false, err
}

I can create a PR to fix this 👍🏻

@samouss
Copy link
Contributor

samouss commented Jan 5, 2023

Hi! Thanks for opening an issue. Indeed the options are not exposed.

I can create a PR to fix this 👍🏻

That would be awesome!

@ElPicador
Copy link
Contributor

@Gesisfm why did you ping me here?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants
@ElPicador @samouss @k20human and others