Draft
Conversation
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/90573427-c09d-48cf-b7ca-a1f90aca3778 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/90573427-c09d-48cf-b7ca-a1f90aca3778 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update OrientDB dependency to version 3.2.51
Upgrade OrientDB from 2.1.25 to 3.2.51
May 4, 2026
Copilot stopped work on behalf of
vharseko due to an error
May 4, 2026 15:45
Member
|
@copilot merge from master |
…ntdb-dependency-to-3-2-51 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Contributor
Author
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/137881ce-3296-4c1a-b111-73305b9eba34 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/137881ce-3296-4c1a-b111-73305b9eba34 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/fd0f6533-6ff6-45f9-b2bd-fe75bff71b79 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…SGi) Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/ec490947-b06c-458e-aa2c-eccf9a39fe3b Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/ec490947-b06c-458e-aa2c-eccf9a39fe3b Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…tion Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/cfbfa70d-101d-4885-a0f9-c9716800ec37 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/f686b193-e315-4b7b-8a23-23373923701a Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/79916a32-cd83-4998-bc85-1e12e49111ea Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/38e219fd-4024-4ef0-b81a-2436acf1cd1a Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…B schema bootstrap Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/04ba02ec-0d5e-4d7a-b300-abcf5bc28200 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…hema bootstrap Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/fe073316-d772-4def-af3b-0b140f4705c6 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…meout to 5m Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/7634ae3e-3086-424a-ae94-6959c3999688 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…bump CI timeout to 15m Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/8a16de80-db33-497e-848a-2b83a1dbd7d0 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…-bootstrap) Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/8a16de80-db33-497e-848a-2b83a1dbd7d0 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
…usters" in 3.x, not cluster id Agent-Logs-Url: https://github.com/OpenIdentityPlatform/OpenIDM/sessions/319e46a6-fefe-4742-93f9-6384f78117a7 Co-authored-by: vharseko <6818498+vharseko@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
RecordId cannot support cluster id major than 32767. Found: 32768was caused by an OrientDB 2→3 API semantics change, not by the previously-suspected static-init/WAL flags.OSchema.createClass(String, int)in 3.x interprets the int as number of clusters to create, not a cluster id. The existing code passeddb.addCluster(name)(a cluster id) into that argument, so each class spawned N additional clusters and quickly exceeded the 32767 limit.DBHelper.createOrUpdateOrientDBClassto use thecreateClass(String, int[])overload, binding the new class to the explicit cluster id we just created.Original prompt
This pull request was created from Copilot chat.