aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/watch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/watch.rs')
-rw-r--r--src/cmd/watch.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cmd/watch.rs b/src/cmd/watch.rs
index d36a614..f0d1929 100644
--- a/src/cmd/watch.rs
+++ b/src/cmd/watch.rs
@@ -208,8 +208,7 @@ impl<S: tokio::io::AsyncRead + tokio::io::AsyncWrite + Send + 'static>
make_connector: Box<dyn Fn() -> crate::client::Connector<S> + Send>,
auth: &crate::protocol::Auth,
) -> Self {
- let list_client =
- crate::client::Client::list(make_connector(), auth, 4_194_304);
+ let list_client = crate::client::Client::list(make_connector(), auth);
Self {
make_connector,
@@ -326,7 +325,6 @@ impl<S: tokio::io::AsyncRead + tokio::io::AsyncWrite + Send + 'static>
let client = crate::client::Client::watch(
(self.make_connector)(),
&self.auth,
- 4_194_304,
id,
);
self.state.watching(client);