disable canceling until the http connection code is understood

This commit is contained in:
Fred Quintana
2009-08-30 22:49:05 -07:00
parent b0a0540483
commit 5ebe32deb5

View File

@@ -111,7 +111,8 @@ public abstract class AbstractThreadedSyncAdapter {
if (mSyncThread != null
&& mSyncThread.mSyncContext.getISyncContext().asBinder()
== syncContext.asBinder()) {
mSyncThread.interrupt();
// TODO: figure out why canceling causes a hang
// mSyncThread.interrupt();
}
}
}