Skip to content

Commit

Permalink
use Name instead of FullName for telemetry filename hash (dotnet#3633)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-A committed Aug 22, 2019
1 parent ab6bb99 commit c40581a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlnet/Commands/New/NewCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal NewCommand(NewCommandSettings settings, MlTelemetry telemetry)

public void Execute()
{
telemetry.LogAutoTrainMlCommand(settings.Dataset.FullName, settings.MlTask.ToString(), settings.Dataset.Length);
telemetry.LogAutoTrainMlCommand(settings.Dataset.Name, settings.MlTask.ToString(), settings.Dataset.Length);

CodeGenerationHelper codeGenerationHelper = new CodeGenerationHelper(new AutoMLEngine(settings), settings); // Needs to be improved.
codeGenerationHelper.GenerateCode();
Expand Down

0 comments on commit c40581a

Please sign in to comment.