iKeepo w
10/21/2022, 2:26 AMTimothy Tse
10/21/2022, 12:14 PMKun Situ
10/22/2022, 3:25 PMDaniel
10/24/2022, 7:40 PMTypeError: Cannot read properties of null (reading 'parentNode')
at parentNode (index.dae84138.js:4:48177)
at <http://qw.se|qw.se> [as fn] (index.dae84138.js:4:33506)
at qw.run (index.dae84138.js:1:5367)
at U.E.update (index.dae84138.js:4:34233)
at go (index.dae84138.js:4:664)
at fM (index.dae84138.js:4:2296)
Finally, I am running my python scripts and have prefect==2.6.4 pip installed via a conda environment on my vm.Marco Pérez
10/25/2022, 5:10 PMMarco Pérez
10/25/2022, 5:18 PMMathijs Carlu
10/26/2022, 6:28 AMSamhita Sarkar
10/26/2022, 1:10 PMSamhita Sarkar
10/26/2022, 4:33 PMMarwan Sarieddine
10/27/2022, 12:48 AMKyle D
10/27/2022, 6:36 PMEnes KÖKÇÜ
10/28/2022, 8:47 PMmerlin
10/29/2022, 5:14 PMYousef Hosny
10/31/2022, 1:06 PMVadym Dytyniak
10/31/2022, 2:34 PMMatthew Cloney
10/31/2022, 5:23 PMDockerfile
I'm unable to connect to the UI from my local no matter what I try. I've tried @Cole Murray’s suggestion of mapping port 4200, passing --network host
, etc. but I'm getting "Empty reply from server" when I try to curl it. This is the full docker run
command I'm running, TIA for any suggestions!
docker run --rm --name prefect -p 4200:4200 prefecthq/prefect:dev-python3.7 prefect orion start
redsquare
10/31/2022, 8:23 PMAdam
10/31/2022, 10:30 PMVadym Dytyniak
11/01/2022, 10:28 AMNelson Griffiths
11/03/2022, 4:39 PMAlexandru Anghel
11/03/2022, 4:50 PMAndreas Nigg
11/08/2022, 4:11 PMmerlin
11/08/2022, 11:35 PMErin Geno
11/09/2022, 3:52 PMMo
11/09/2022, 8:31 PMStephen Herron
11/11/2022, 9:57 AMTim-Oliver
11/14/2022, 9:01 AMparameter must be less than or equal to 2
error in the cloud UI if I want to customize a tuple/list parameter. Is this a known issue?Luca Schneider
11/14/2022, 1:19 PM@flow
def flow():
f1 = subflow1()
f2 = subflow2()
data1 = task1.submit(wait_for=[f1, f2])
data2 = task2().submit()
data3 = task3.submit(data1, data2, wait_for=[data1, data2])
if data3.result():
data4 = task4.submit(data3, wait_for=[data3])
task5.submit(data4, wait_for=[data4])
else:
pass
James Zhang
11/14/2022, 10:30 PMPREFECT_ORION_UI_API_URL
, there will be error saying it can’t communicate with 127.0.0.1/api
• if I set PREFECT_ORION_UI_API_URL
e.g. company.domain/api
, the error is gone, but now the UI make bizarre request with URL <https://company.domain/company.domain/api/xxx>
which returns 405 errors that I see in browser network log…
so is there anything I could do? I’m on version 2.6.7Christian Juhl
11/15/2022, 9:12 AM