Skip to content

Commit

Permalink
Merge pull request #62 from RADAR-base/release-0.11.1
Browse files Browse the repository at this point in the history
Release 0.11.1
  • Loading branch information
blootsvoets committed Oct 30, 2018
2 parents f44e594 + 776d38f commit 7af4735
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}
dependencies {
implementation group: 'org.radarcns', name: 'radar-commons', version: '0.11.0'
implementation group: 'org.radarcns', name: 'radar-commons', version: '0.11.1'
}
```

Expand All @@ -26,7 +26,7 @@ repositories {
}
dependencies {
implementation group: 'org.radarcns', name: 'radar-commons-server', version: '0.11.0'
implementation group: 'org.radarcns', name: 'radar-commons-server', version: '0.11.1'
}
```

Expand All @@ -40,7 +40,7 @@ repositories {
}
dependencies {
testImplementation group: 'org.radarcns', name: 'radar-commons-testing', version: '0.11.0'
testImplementation group: 'org.radarcns', name: 'radar-commons-testing', version: '0.11.1'
}
```

Expand All @@ -53,7 +53,7 @@ repositories {
}
dependencies {
runtimeOnly group: 'org.radarcns', name: 'radar-commons-unsafe', version: '0.11.0'
runtimeOnly group: 'org.radarcns', name: 'radar-commons-unsafe', version: '0.11.1'
}
```

Expand All @@ -78,7 +78,7 @@ configurations.all {
}
dependencies {
compile group: 'org.radarcns', name: 'radar-commons', version: '0.11.1-SNAPSHOT', changing: true
compile group: 'org.radarcns', name: 'radar-commons', version: '0.11.2-SNAPSHOT', changing: true
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ subprojects {
// Configuration //
//---------------------------------------------------------------------------//

version = '0.11.0'
version = '0.11.1'
group = 'org.radarcns'
ext.githubRepoName = 'RADAR-CNS/RADAR-Commons'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,19 +166,14 @@ public void addSchemaMetadata(String topic, boolean ofValue, ParsedSchemaMetadat
*/
public ParsedSchemaMetadata getOrSetSchemaMetadata(String topic, boolean ofValue, Schema schema,
int version) throws IOException {
ParsedSchemaMetadata metadata;
try {
metadata = getSchemaMetadata(topic, ofValue, version);
if (metadata.getSchema().equals(schema)) {
return metadata;
}
return getSchemaMetadata(topic, ofValue, version);
} catch (IOException ex) {
logger.warn("Schema for {} value was not yet added to the schema registry.", topic);
ParsedSchemaMetadata metadata = new ParsedSchemaMetadata(null, null, schema);
addSchemaMetadata(topic, ofValue, metadata);
return metadata;
}

metadata = new ParsedSchemaMetadata(null, null, schema);
addSchemaMetadata(topic, ofValue, metadata);
return metadata;
}

private class SchemaRequestBody extends RequestBody {
Expand Down

0 comments on commit 7af4735

Please sign in to comment.