Merge pull request #1861 from OpenRefine/increment_wd_hash_size

Increment size of Wikidata edit batch ids
This commit is contained in:
Jacky 2018-11-26 10:55:23 -05:00 committed by GitHub
commit b55e447520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,7 +194,7 @@ public class PerformWikibaseEditsOperation extends EngineDependentOperation {
// Generate batch token
long token = (new Random()).nextLong();
String summary = _summary + String.format(" ([[:toollabs:editgroups/b/OR/%s|details]])",
(Long.toHexString(token).substring(0, 7)));
(Long.toHexString(token).substring(0, 8)));
// Evaluate the schema
List<ItemUpdate> itemDocuments = _schema.evaluate(_project, _engine);