Skip to content

Commit

Permalink
Merge pull request #14 from Microsoft/sergkanz/rddSanitizationFix
Browse files Browse the repository at this point in the history
wrong error message for dependency sanitization
  • Loading branch information
Meni Zalzman committed Aug 5, 2015
2 parents cee4e9c + a5c4e14 commit 9364a78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public string DependencyKind
void ITelemetry.Sanitize()
{
this.Name = this.Name.SanitizeName();
this.Name = Utils.PopulateRequiredStringValue(this.Name, "name", typeof(EventTelemetry).FullName);
this.Name = Utils.PopulateRequiredStringValue(this.Name, "name", typeof(DependencyTelemetry).FullName);
this.DependencyTypeName = this.DependencyTypeName.SanitizeValue();
this.CommandName = this.CommandName.SanitizeCommandName();
this.Properties.SanitizeProperties();
Expand Down

0 comments on commit 9364a78

Please sign in to comment.