-
Notifications
You must be signed in to change notification settings - Fork 12
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
aeon: connect implementation #1065
Open
dmyger
wants to merge
4
commits into
master
Choose a base branch
from
dmyger/gh-1050-aeon-connect-implementation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+6,769
−132
Conversation
This file contains 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
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
December 13, 2024 11:31
e743db4
to
4e6f784
Compare
dmyger
force-pushed
the
dmyger/gh-1048-aeon-connect-dummy-implementation
branch
from
December 13, 2024 12:49
ba43ee0
to
7c44fea
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
December 13, 2024 12:51
4e6f784
to
90c3018
Compare
dmyger
force-pushed
the
dmyger/gh-1048-aeon-connect-dummy-implementation
branch
from
December 13, 2024 13:08
7c44fea
to
6f2cdc8
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
December 13, 2024 13:09
90c3018
to
f6a666b
Compare
Base automatically changed from
dmyger/gh-1048-aeon-connect-dummy-implementation
to
master
December 16, 2024 07:02
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
10 times, most recently
from
December 23, 2024 15:07
8a3c46a
to
4151819
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
2 times, most recently
from
December 26, 2024 13:26
75ee5c5
to
81f879f
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
December 27, 2024 13:46
81f879f
to
243e95c
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
3 times, most recently
from
December 27, 2024 16:45
40a246a
to
b09a2db
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
2 times, most recently
from
December 27, 2024 16:53
903da6a
to
543f89a
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
3 times, most recently
from
December 28, 2024 12:29
84a305e
to
75fc2c9
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
2 times, most recently
from
December 28, 2024 12:40
344b475
to
3cc50af
Compare
Please, add a CHANGELOG.md entry and a TarantoolBot comment too. |
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
January 10, 2025 16:13
3cc50af
to
ec39731
Compare
prepare-[ce|ee]-test-env - fixed preparing test requirements. static-code-check - removed extra steps what was did on previous steps. Changes are needed to adjust the CI/CD settings to match their step name. Which in turn allows you to properly manage the order of actions during the build testing.
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
3 times, most recently
from
January 13, 2025 19:05
0c9e45f
to
8c3fb45
Compare
Please, fix the linter errors and red CI. |
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
2 times, most recently
from
January 14, 2025 12:08
d34e71d
to
c4925c4
Compare
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
2 times, most recently
from
January 15, 2025 12:23
22c5bfa
to
ff7dff7
Compare
Implement aeon console connection. The ‘Console’ module has been separate from the ‘Connect’ abstraction, to allow it being used independently of the transport layer. Closes #1050 @TarantoolBot document Title: Implement aeon console connection. Command allow connect to Enterprise Aeon database with specified URL. Available command options: - `sslkeyfile <private_key>` - path to private part of certificate. - `sslcertfile <pub_cert>` - path to public part of certificate. - `sslcafile <ca_file>` - path to root CA for self-signed certificate. - `transport [ssl|plain]` - connection mode.
dmyger
force-pushed
the
dmyger/gh-1050-aeon-connect-implementation
branch
from
January 15, 2025 13:26
ff7dff7
to
707c933
Compare
oleg-jukovec
approved these changes
Jan 15, 2025
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.
Mock server Implement some base methods for integration tests.
Part of #1050