Skip to content

Commit

Permalink
fix: remove unused param and comment
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Keyser <39230492+RobertKeyser@users.noreply.github.com>
  • Loading branch information
SteveDMurphy and RobertKeyser committed Aug 1, 2023
1 parent 453b1a5 commit 9d91ae1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/fides/api/api/v1/endpoints/health.py
Expand Up @@ -80,9 +80,7 @@ def get_cache_health() -> str:
},
},
)
async def health(
db: Session = Depends(get_db),
) -> Dict: # Intentionally injecting the ops get_db
async def health() -> Dict:
"""Confirm that the API is running and healthy."""
database_health = get_db_health(CONFIG.database.sync_database_uri)
cache_health = get_cache_health()
Expand Down

0 comments on commit 9d91ae1

Please sign in to comment.