-
Notifications
You must be signed in to change notification settings - Fork 340
feat: add sqla broker #2704
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
Open
Arseniy-Popov
wants to merge
66
commits into
ag2ai:main
Choose a base branch
from
Arseniy-Popov:feat/sqla-broker
base: main
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
feat: add sqla broker #2704
Changes from all commits
Commits
Show all changes
66 commits
Select commit
Hold shift + click to select a range
d7a3c4a
feat: add sqla broker
Arseniy-Popov bbac874
feat: add sqla broker
Arseniy-Popov fb3a9b9
feat: add sqla broker
Arseniy-Popov 9a6b866
feat: add sqla broker
Arseniy-Popov 29b80f8
feat: add sqla broker
Arseniy-Popov ba5daad
feat: add sqla broker
Arseniy-Popov 4dc0532
feat: add sqla broker
Arseniy-Popov c9ec348
feat: add sqla broker
Arseniy-Popov 35a3b48
feat: add sqla broker
Arseniy-Popov 96de0cd
feat: add sqla broker
Arseniy-Popov f0775a1
feat: add sqla broker
Arseniy-Popov 0464c49
feat: add sqla broker
Arseniy-Popov 33661b1
feat: add sqla broker
Arseniy-Popov 27707b5
feat: add sqla broker
Arseniy-Popov d201ee4
feat: add sqla broker
Arseniy-Popov 9b8c3d3
feat: add sqla broker
Arseniy-Popov fed9855
feat: add sqla broker
Arseniy-Popov 8ecbc91
feat: add sqla broker
Arseniy-Popov 37314b7
feat: add sqla broker
Arseniy-Popov 016686f
feat: add sqla broker
Arseniy-Popov 8c468af
feat: add sqla broker
Arseniy-Popov b4da4f6
feat: add sqla broker
Arseniy-Popov 315a2b1
feat: add sqla broker
Arseniy-Popov 3634a6f
feat: add sqla broker
Arseniy-Popov 9722c13
feat: add sqla broker
Arseniy-Popov 068c024
feat: add sqla broker
Arseniy-Popov d18bd25
feat: add sqla broker
Arseniy-Popov 3c40534
feat: add sqla broker
Arseniy-Popov 9737503
feat: add sqla broker
Arseniy-Popov d2c4767
feat: add sqla broker
Arseniy-Popov 88f33d5
Merge branch 'main' into feat/sqla-broker
Arseniy-Popov b5f7223
feat: add sqla broker
Arseniy-Popov 0c8f8c5
feat: add sqla broker
Arseniy-Popov 6cd7f74
feat: add sqla broker
Arseniy-Popov 5dc1b4e
feat: add sqla broker
Arseniy-Popov 6884927
feat: add sqla broker
Arseniy-Popov 128c4d1
Merge branch 'main' into feat/sqla-broker
Lancetnik 2628408
feat: add sqla broker
Arseniy-Popov e760f36
feat: add sqla broker
Arseniy-Popov b9ce283
feat: add sqla broker
Arseniy-Popov e78d972
feat: add sqla broker
Arseniy-Popov 8ce7e7c
feat: add sqla broker
Arseniy-Popov 69375ee
feat: add sqla broker
Arseniy-Popov a81704f
feat: add sqla broker
Arseniy-Popov 310029f
feat: add sqla broker
Arseniy-Popov a494ec7
feat: add sqla broker
Arseniy-Popov 19dac15
feat: add sqla broker
Arseniy-Popov 6f3cb1d
feat: add sqla broker
Arseniy-Popov ca90a8b
Merge branch 'main' into feat/sqla-broker
Arseniy-Popov 5cdd546
feat: add sqla broker
Arseniy-Popov 1cb02c9
feat: add sqla broker
Arseniy-Popov 6c2de70
feat: add sqla broker
Arseniy-Popov 870b90e
feat: add sqla broker
Arseniy-Popov a3c0e4f
feat: add sqla broker
Arseniy-Popov 27d871a
Merge branch 'main' into feat/sqla-broker
Lancetnik b1f392e
feat: add sqla broker
Arseniy-Popov 3683ccb
feat: add sqla broker
Arseniy-Popov 77cec00
feat: add sqla broker
Arseniy-Popov 7e76c4a
feat: add sqla broker
Arseniy-Popov 15d8f53
feat: add sqla broker
Arseniy-Popov 312a0b2
feat: add sqla broker
Arseniy-Popov 2c06080
feat: add sqla broker
Arseniy-Popov be78542
feat: add sqla broker
Arseniy-Popov 58417ee
feat: add sqla broker
Arseniy-Popov 0f87113
feat: add sqla broker
Arseniy-Popov 53632a5
Merge branch 'main' into feat/sqla-broker
Lancetnik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,6 +41,31 @@ services: | |
| security_opt: | ||
| - no-new-privileges:true | ||
|
|
||
| postgres: | ||
| image: postgres:latest | ||
| environment: | ||
| POSTGRES_DB: broker | ||
| POSTGRES_USER: broker | ||
| POSTGRES_PASSWORD: brokerpass # pragma: allowlist secret | ||
| ports: | ||
| - "5432:5432" | ||
| security_opt: | ||
| - no-new-privileges:true | ||
|
|
||
| mysql: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need 2 databases to run tests? |
||
| image: mysql:latest | ||
| environment: | ||
| MYSQL_DATABASE: broker | ||
| MYSQL_USER: broker | ||
| MYSQL_PASSWORD: brokerpass # pragma: allowlist secret | ||
| MYSQL_ROOT_PASSWORD: brokerpass # pragma: allowlist secret | ||
| ports: | ||
| - "3306:3306" | ||
| volumes: | ||
| - ./tests/brokers/sqla/infra/init_mysql.sql:/docker-entrypoint-initdb.d/99-grant-all.sql:ro | ||
| security_opt: | ||
| - no-new-privileges:true | ||
|
|
||
| faststream: | ||
| build: . | ||
| volumes: | ||
|
|
||
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
Oops, something went wrong.
Oops, something went wrong.
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.
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 we really need 2 databases to test implementation?