From 22071c00e0ebc7df4ca6385c628095cbce3e24b5 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 30 Jan 2008 19:41:43 -0700 Subject: [PATCH] upload: oops, fix breakage after removing upload_file/upload_data/etc --- src/allmydata/interfaces.py | 8 -------- src/allmydata/test/check_memory.py | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py index bbc354ee..604b5961 100644 --- a/src/allmydata/interfaces.py +++ b/src/allmydata/interfaces.py @@ -1107,14 +1107,6 @@ class IUploader(Interface): def upload_ssk(write_capability, new_version, uploadable): """TODO: how should this work?""" - def upload_data(data): - """Like upload(), but accepts a string.""" - - def upload_filename(filename): - """Like upload(), but accepts an absolute pathname.""" - - def upload_filehandle(filehane): - """Like upload(), but accepts an open filehandle.""" class IChecker(Interface): def check(uri_to_check): diff --git a/src/allmydata/test/check_memory.py b/src/allmydata/test/check_memory.py index e45fabb3..53977d91 100644 --- a/src/allmydata/test/check_memory.py +++ b/src/allmydata/test/check_memory.py @@ -5,7 +5,7 @@ from cStringIO import StringIO from twisted.internet import defer, reactor, protocol, error from twisted.application import service, internet from twisted.web import client as tw_client -from allmydata import client, introducer +from allmydata import client, introducer, upload from allmydata.scripts import create_node from allmydata.util import testutil, fileutil import foolscap @@ -393,7 +393,7 @@ this file are ignored. files[name] = self.create_data(name, size) u = self.nodes[0].getServiceNamed("uploader") d = self.nodes[0].debug_wait_for_client_connections(self.numnodes+1) - d.addCallback(lambda res: u.upload_filename(files[name])) + d.addCallback(lambda res: u.upload(upload.FileName(files[name]))) else: raise RuntimeError("unknown mode=%s" % self.mode) def _complete(uri): -- 2.45.2