Skip to content

Commit

Permalink
Merge pull request #72 from nlevitt/persist-annotations
Browse files Browse the repository at this point in the history
add A_ANNOTATIONS to persistentKeys so that CrawlURI doesn't lose its an...
  • Loading branch information
vonrosen committed May 22, 2014
2 parents f2bc214 + 67a0c59 commit 12186af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/src/main/java/org/archive/modules/CrawlURI.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public static enum FetchType { HTTP_GET, HTTP_POST, UNKNOWN };
*/
private static final Collection<String> persistentKeys
= new CopyOnWriteArrayList<String>(
new String [] {A_CREDENTIALS_KEY, A_HTTP_AUTH_CHALLENGES, A_SUBMIT_DATA, A_WARC_RESPONSE_HEADERS});
new String [] {A_CREDENTIALS_KEY, A_HTTP_AUTH_CHALLENGES, A_SUBMIT_DATA, A_WARC_RESPONSE_HEADERS, A_ANNOTATIONS});

/** maximum length for pathFromSeed/hopsPath; longer truncated with leading counter **/
private static final int MAX_HOPS_DISPLAYED = 50;
Expand Down

0 comments on commit 12186af

Please sign in to comment.