Task #108766 - fixed.err
back to task #108766download
Error: CLIPPY_WARNING: crates/openshell-cli/src/run.rs:1900:5: warning: large future with a size of 19624 bytes # | # 1900 | / sandbox_create( # 1901 | | &server, # 1902 | | name, # 1903 | | from, # ... | # 1918 | | &tls, # 1919 | | ) # | |_____^ # | # = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#large_futures # help: consider `Box::pin` on it # | # 1900 ~ Box::pin(sandbox_create( # 1901 + &server, # 1902 + name, # 1903 + from, # 1904 + &gateway_name, # 1905 + upload, # 1906 + keep, # 1907 + gpu, # 1908 + editor, # 1909 + remote, # 1910 + ssh_key, # 1911 + providers, # 1912 + policy, # 1913 + forward, # 1914 + command, # 1915 + tty_override, # 1916 + Some(false), # 1917 + auto_providers_override, # 1918 + &tls, # 1919 + )) # |