-
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
base: master
Are you sure you want to change the base?
Conversation
e743db4
to
4e6f784
Compare
ba43ee0
to
7c44fea
Compare
4e6f784
to
90c3018
Compare
7c44fea
to
6f2cdc8
Compare
90c3018
to
f6a666b
Compare
8a3c46a
to
4151819
Compare
75ee5c5
to
81f879f
Compare
81f879f
to
243e95c
Compare
40a246a
to
b09a2db
Compare
903da6a
to
543f89a
Compare
84a305e
to
75fc2c9
Compare
344b475
to
3cc50af
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, add tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks still relevant.
Please, add a CHANGELOG.md entry and a TarantoolBot comment too. |
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.
0c9e45f
to
8c3fb45
Compare
Please, fix the linter errors and red CI. |
} | ||
return output | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A comment missed.
func NewResultType(names []string, rows []ResultRow) ResultType { | ||
return ResultType{ | ||
names: names, | ||
rows: rows, | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we just to add the constructor into the public API?
) | ||
|
||
const ( | ||
DefaultHistoryFileName = ".tarantool_history" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do separate history files are used for Tarantool and aeon?
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.
8c3fb45
to
d34e71d
Compare
Mock server Implement some base methods for integration tests.
Part of #1050