Skip to content

Commit

Permalink
Merge pull request Azure#213 from jofriedm-msft/dev
Browse files Browse the repository at this point in the history
Set logging properties to null if service does not return them
  • Loading branch information
jofriedm-msft authored Sep 6, 2017
2 parents 1976c16 + af86e4e commit 7c52119
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static ServiceProperties readServicePropertiesFromStream(final InputStrea
IOException, ParserConfigurationException {
SAXParser saxParser = Utility.getSAXParser();
ServicePropertiesHandler handler = new ServicePropertiesHandler();
handler.props.setCors(null);
handler.props.setLogging(null);
handler.props.setHourMetrics(null);
handler.props.setMinuteMetrics(null);
handler.props.setCors(null);
Expand Down

0 comments on commit 7c52119

Please sign in to comment.