Updated Branches: refs/heads/master 99c866c17 -> b7b79c17e
Fix avro namespaces to be org.apache instead of com.cloudera Project: http://git-wip-us.apache.org/repos/asf/incubator-crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-crunch/commit/b7b79c17 Tree: http://git-wip-us.apache.org/repos/asf/incubator-crunch/tree/b7b79c17 Diff: http://git-wip-us.apache.org/repos/asf/incubator-crunch/diff/b7b79c17 Branch: refs/heads/master Commit: b7b79c17ec42ba4bbc4b7ab56e517269851fbc6e Parents: 99c866c Author: jwills <[email protected]> Authored: Mon Jul 30 11:10:50 2012 -0700 Committer: jwills <[email protected]> Committed: Mon Jul 30 11:10:50 2012 -0700 ---------------------------------------------------------------------- crunch/src/it/resources/employee.avro | 2 +- crunch/src/it/resources/person.avro | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/b7b79c17/crunch/src/it/resources/employee.avro ---------------------------------------------------------------------- diff --git a/crunch/src/it/resources/employee.avro b/crunch/src/it/resources/employee.avro index 3563df9..94b7483 100644 --- a/crunch/src/it/resources/employee.avro +++ b/crunch/src/it/resources/employee.avro @@ -1,5 +1,5 @@ { -"namespace": "com.cloudera.crunch.test", +"namespace": "org.apache.crunch.test", "name": "Employee", "type": "record", "fields": [ http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/b7b79c17/crunch/src/it/resources/person.avro ---------------------------------------------------------------------- diff --git a/crunch/src/it/resources/person.avro b/crunch/src/it/resources/person.avro index 053c31c..82fd6ec 100644 --- a/crunch/src/it/resources/person.avro +++ b/crunch/src/it/resources/person.avro @@ -1,9 +1,9 @@ { -"namespace": "com.cloudera.crunch.test", +"namespace": "org.apache.crunch.test", "name": "Person", "type": "record", "fields": [ {"name": "name", "type": ["string", "null"] }, {"name": "age", "type": "int"}, {"name": "siblingnames", "type": {"type": "array", "items": "string"}} ] -} \ No newline at end of file +}
