File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
processes/connectors/fsspec Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## [ 1.2.37]
2+
3+ * ** fix: sftp protocol needs default**
4+
15## [ 1.2.36]
26
37* ** fix: allow sftp via paramiko for kubernetes**
Original file line number Diff line number Diff line change 1- __version__ = "1.2.36 " # pragma: no cover
1+ __version__ = "1.2.37 " # pragma: no cover
Original file line number Diff line number Diff line change 4040
4141class FileConfig (BaseModel ):
4242 remote_url : str = Field (description = "Remote fsspec URL formatted as `protocol://dir/path`" )
43- protocol : str = Field (init = False )
44- path_without_protocol : str = Field (init = False )
43+ protocol : str = Field (init = False , default = "" )
44+ path_without_protocol : str = Field (init = False , default = "" )
4545 supported_protocols : list [str ] = Field (
4646 init = False ,
4747 default_factory = lambda : [
You can’t perform that action at this time.
0 commit comments