Skip to content

Commit

Permalink
Fixes wrongly specified path for leveldb hook (#15453)
Browse files Browse the repository at this point in the history
Fixes #15451
  • Loading branch information
potiuk committed Apr 20, 2021
1 parent 63bec6f commit 42a1ca8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/providers/google/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ hook-class-names:
- airflow.providers.google.cloud.hooks.cloud_sql.CloudSQLDatabaseHook
- airflow.providers.google.cloud.hooks.compute_ssh.ComputeEngineSSHHook
- airflow.providers.google.cloud.hooks.bigquery.BigQueryHook
- airflow.providers.google.common.hooks.leveldb.LevelDBHook
- airflow.providers.google.leveldb.hooks.leveldb.LevelDBHook

extra-links:
- airflow.providers.google.cloud.operators.bigquery.BigQueryConsoleLink
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function discover_all_hooks() {
group_start "Listing available hooks via 'airflow providers hooks'"
COLUMNS=180 airflow providers hooks

local expected_number_of_hooks=64
local expected_number_of_hooks=65
local actual_number_of_hooks
actual_number_of_hooks=$(airflow providers hooks --output table | grep -c "| apache" | xargs)
if [[ ${actual_number_of_hooks} != "${expected_number_of_hooks}" ]]; then
Expand Down
1 change: 1 addition & 0 deletions tests/core/test_providers_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
'jenkins',
'jira',
'kubernetes',
'leveldb',
'livy',
'mongo',
'mssql',
Expand Down

0 comments on commit 42a1ca8

Please sign in to comment.