mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-20 06:58:18 +00:00
Fixed airflow APIs caching issue (#7823)
* Fixed airflow APIs caching * FIxed linting * fixed py format Co-authored-by: Onkar Ravgan <onkarravgan@Onkars-MacBook-Pro.local>
This commit is contained in:
parent
ca51fa0245
commit
0e8fa2eeed
@ -52,7 +52,7 @@ def get_fn(blueprint: Blueprint) -> Callable:
|
|||||||
the session
|
the session
|
||||||
"""
|
"""
|
||||||
|
|
||||||
json_request = request.get_json()
|
json_request = request.get_json(cache=False)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ def get_fn(blueprint: Blueprint) -> Callable:
|
|||||||
Given a WorkflowSource Schema, create the engine
|
Given a WorkflowSource Schema, create the engine
|
||||||
and test the connection
|
and test the connection
|
||||||
"""
|
"""
|
||||||
json_request = request.get_json()
|
json_request = request.get_json(cache=False)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
test_service_connection = parse_test_connection_request_gracefully(
|
test_service_connection = parse_test_connection_request_gracefully(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user