Conversation
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2463 +/- ##
==========================================
- Coverage 48.86% 48.85% -0.01%
==========================================
Files 191 191
Lines 26152 26152
==========================================
- Hits 12778 12776 -2
- Misses 13374 13376 +2 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
LGTM. I actually remember changing something here when rewriting to async:
Meh, annoying link, here's the part:
# Finally, persist the cursor for this space.
connection.execute(
"INSERT INTO cursor (space, cursor) VALUES (?, ?) "
"ON CONFLICT(space) DO UPDATE SET cursor=excluded.cursor",
(space_to_sync, result.cursors["nodes"]),
)
connection.commit()|
🦄 |
Description
Please describe the change you have made.
Checklist:
If a new method has been added it should be referenced in cognite.rst in order to generate docs based on its docstring.