Skip to content
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

Implement dropUser command #3866

Merged
merged 19 commits into from
Dec 20, 2023
Prev Previous commit
Next Next commit
wip
  • Loading branch information
henvic committed Dec 18, 2023
commit 42cabfc314ecc41d00256f6f205c341aac67c377
1 change: 0 additions & 1 deletion .github/workflows/_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ jobs:
SHARD_TOTAL=${{ inputs.shard_total }}
TEST_TIMEOUT=15m
DISABLE_PUSHDOWN=${{ inputs.disable_pushdown }}
ENABLE_NEW_AUTH=${{ inputs.enable_new_auth }}
env:
GOFLAGS: ${{ runner.debug == '1' && '-v' || '' }}
FERRETDB_HANA_URL: ${{ secrets.FERRETDB_HANA_URL }}
Expand Down
4 changes: 0 additions & 4 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ tasks:
-postgresql-url='postgres://username@127.0.0.1:5432/ferretdb?search_path='
-compat-url='mongodb://username:password@127.0.0.1:47018/?tls=true&tlsCertificateKeyFile=../build/certs/client.pem&tlsCaFile=../build/certs/rootCA-cert.pem&replicaSet=mongodb-rs'
-disable-pushdown={{.DISABLE_PUSHDOWN}}
-enable-new-auth={{.ENABLE_NEW_AUTH}}

test-integration-sqlite:
desc: "Run integration tests for `sqlite` backend"
Expand All @@ -243,7 +242,6 @@ tasks:
-target-tls
-compat-url='mongodb://username:password@127.0.0.1:47018/?tls=true&tlsCertificateKeyFile=../build/certs/client.pem&tlsCaFile=../build/certs/rootCA-cert.pem&replicaSet=mongodb-rs'
-disable-pushdown={{.DISABLE_PUSHDOWN}}
-enable-new-auth={{.ENABLE_NEW_AUTH}}

test-integration-mysql:
desc: "Run integration tests for `mysql` handler"
Expand All @@ -269,7 +267,6 @@ tasks:
-mysql-url='mysql://username:password@127.0.0.1:3306/ferretdb'
-compat-url='mongodb://username:password@127.0.0.1:47018/?tls=true&tlsCertificateKeyFile=../build/certs/client.pem&tlsCaFile=../build/certs/rootCA-cert.pem&replicaSet=mongodb-rs'
-disable-pushdown={{.DISABLE_PUSHDOWN}}
-enable-new-auth={{.ENABLE_NEW_AUTH}}

test-integration-hana:
desc: "Run integration tests for `hana` handler"
Expand All @@ -295,7 +292,6 @@ tasks:
-hana-url=$FERRETDB_HANA_URL
-compat-url='mongodb://username:password@127.0.0.1:47018/?tls=true&tlsCertificateKeyFile=../build/certs/client.pem&tlsCaFile=../build/certs/rootCA-cert.pem&replicaSet=mongodb-rs'
-disable-pushdown={{.DISABLE_PUSHDOWN}}
-enable-new-auth={{.ENABLE_NEW_AUTH}}

test-integration-mongodb:
desc: "Run integration tests for MongoDB"
Expand Down
Loading