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

memo no longer in startup event? #700

Closed
masantiago opened this issue Feb 27, 2021 · 2 comments
Closed

memo no longer in startup event? #700

masantiago opened this issue Feb 27, 2021 · 2 comments
Labels
question Further information is requested

Comments

@masantiago
Copy link

Question

By doing a basic example with kopf:

@kopf.on.startup()
async def startup(memo: kopf.Memo, **_):
    pass

TypeError: startup() missing 1 required positional argument: 'memo'

Nevertheless, it works with other handlers:

@kopf.on.create("example.com")
async def create(spec, memo: kopf.Memo, **kwargs):

I am using the latest version of kopf 1.29.2

Checklist

  • [ X] I have read the documentation and searched there for the problem
  • [ X] I have searched in the GitHub Issues for similar questions

Keywords

memo

@masantiago masantiago added the question Further information is requested label Feb 27, 2021
@nolar
Copy link
Owner

nolar commented Feb 27, 2021

Hello

The global memos are only available in kopf==1.30.0rc1 — this is a pre-release yet, so it will not be installed without the version explicitly specified or without the “pre” flag: pip install --pre kopf.

Rel: #667

@masantiago
Copy link
Author

Thank you @nolar! I was confused by reading the doc. Now it works perfect!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants