log compress errors

This commit is contained in:
zzz
2010-04-21 17:41:14 +00:00
parent b1aafa5aaf
commit 106bccda0e
3 changed files with 16 additions and 2 deletions

View File

@ -1054,7 +1054,13 @@ public class DataHelper {
// * (((double) orig.length) / ((double) rv.length)) + "% savings)"); // * (((double) orig.length) / ((double) rv.length)) + "% savings)");
return rv; return rv;
} catch (IOException ioe) { } catch (IOException ioe) {
//_log.error("Error compressing?!", ioe); // Apache Harmony 5.0M13
//java.io.IOException: attempt to write after finish
//at java.util.zip.DeflaterOutputStream.write(DeflaterOutputStream.java:181)
//at net.i2p.util.ResettableGZIPOutputStream.write(ResettableGZIPOutputStream.java:122)
//at net.i2p.data.DataHelper.compress(DataHelper.java:1048)
// ...
ioe.printStackTrace();
return null; return null;
} finally { } finally {
ReusableGZIPOutputStream.release(out); ReusableGZIPOutputStream.release(out);

View File

@ -1,3 +1,11 @@
2010-04-21 zzz
* EepGet: Don't convert a MalformedURLException into
an IOE so we recognize it when it's throuwn
* ReusableGZIPStreams:
- Concurrent
- Workaround for Apache Harmony 5.0M13 Deflater bug
* TrustedUpdate: Increase buf size for extraction
2010-04-18 zzz 2010-04-18 zzz
* configclients.jsp: Start button logic for clients was inverted * configclients.jsp: Start button logic for clients was inverted
* Console: IRC links in readmes and initialNews * Console: IRC links in readmes and initialNews

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 14; public final static long BUILD = 15;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";