Андрей Насонов
08/08/2022, 12:46 PMfrom prefect.filesystems import RemoteFileSystem
gitlab_block = RemoteFileSystem(
basepath='<git://path/to/repo>',
settings={
'key': "GITLAB_USER",
'secret': "GITLAB_TOKEN"})
gitlab_block.save('flows_repo')
This leaves me with
prefect.exceptions.PrefectHTTPStatusError: Client error '422 Unprocessable Entity' for url '<http://ephemeral-orion/api/block_documents/>'
I might be misusing RemoteFileSystem something fierce, could you please guide me in the right direction? Big thanks!Anna Geller
08/08/2022, 1:32 PMAnton L.
08/08/2022, 3:46 PMfsspec
protocol. How to use RemoteFileSystem
, that implements fsspec
, to access flows stored in Git?Anna Geller
08/08/2022, 7:38 PM