Skip to content

Commit

Permalink
fix: toString 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
FYLSunghwan committed Dec 13, 2021
1 parent 0943f0d commit 54897e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public MLExperiment apply(@Nonnull final MLExperimentSnapshot mlExperiment) {
result.setDescription(experimentProperties.getDescription());
}
if (experimentProperties.hasExternalUrl()) {
result.setExternalUrl(experimentProperties.getExternalUrl());
result.setExternalUrl(experimentProperties.getExternalUrl().toString());
}
} else if (aspect instanceof GlobalTags) {
result.setGlobalTags(GlobalTagsMapper.map((GlobalTags) aspect));
Expand Down

0 comments on commit 54897e7

Please sign in to comment.