Skip to content

Commit

Permalink
HdfsRepository supports snowplow#54
Browse files Browse the repository at this point in the history
  • Loading branch information
Lining Sun committed May 10, 2016
1 parent 7dbc036 commit 99fcc20
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,22 @@
"required": ["embedded"],
"additionalProperties": false
},
{
"properties": {
"hdfs": {
"type": "object",
"properties": {
"path": {
"type": "string"
}
},
"required": ["path"],
"additionalProperties": false
}
},
"required": ["hdfs"],
"additionalProperties": false
},
{
"properties": {
"http": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,22 @@
"connection": {
"type": "object",
"oneOf": [
{
"properties": {
"hdfs": {
"type": "object",
"properties": {
"path": {
"type": "string"
}
},
"required": ["path"],
"additionalProperties": false
}
},
"required": ["hdfs"],
"additionalProperties": false
},
{
"properties": {
"embedded": {
Expand Down

0 comments on commit 99fcc20

Please sign in to comment.