Skip to content

Commit

Permalink
Small assorted tweaks (#3979)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi authored Jan 16, 2024
1 parent 857df1b commit c9798c9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ labels:
description: Issues about aggregation pipelines
- name: area/auth
color: "#E4012C"
description: Issues about authentication
description: Issues about authentication and authorization
- name: area/build
color: "#52D58A"
description: Issues about builds and CI
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Please use global .gitignore file for .vscode/, .idea/, go.work, .envrc, etc.
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer

docker-compose.override.yml

state.json

*.out
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.override.yml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
services:
postgres:
platform: linux/amd64
2 changes: 1 addition & 1 deletion internal/util/testutil/postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func TestPostgreSQLURI(tb testtb.TB, ctx context.Context, baseURI string) string
_, err = p.Exec(ctx, q)
require.NoError(tb, err)

q = fmt.Sprintf("CREATE DATABASE %s", pgx.Identifier{name}.Sanitize())
q = fmt.Sprintf("CREATE DATABASE %s TEMPLATE template1", pgx.Identifier{name}.Sanitize())
_, err = p.Exec(ctx, q)
require.NoError(tb, err)

Expand Down

0 comments on commit c9798c9

Please sign in to comment.