Skip to content

Commit

Permalink
worker: Add a missing CleanURL
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-M committed Nov 18, 2015
1 parent 915903c commit ac0e68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func Process(ID, parentID, path string) error {
func detectContent(ID, path string, parent *database.Layer) (OS string, installedPackagesNodes, removedPackagesNodes []string, err error) {
data, err := getLayerData(path)
if err != nil {
log.Errorf("layer %s: failed to extract data from %s: %s", ID, path, err)
log.Errorf("layer %s: failed to extract data from %s: %s", ID, utils.CleanURL(path), err)
return
}

Expand Down

0 comments on commit ac0e68e

Please sign in to comment.