I have a simple PythonOperator
:
def simple():
print ("start simple")
for i in range (10):
time.sleep(0.7)
print("hello from simple")
print ("end simple")
When looking on the logs window, I need to refresh the page in order to see new logs.
Is it possible for the logs to be updated automatically?