Skip to content

Commit

Permalink
review update 2
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Fishbeck <[email protected]>
  • Loading branch information
afishbeck committed Oct 2, 2023
1 parent 85f3860 commit cf89f71
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/pkgfiles/referencedfilelist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,12 @@ void ReferencedFile::processForeignFileTree(const IPropertyTree *tree, const cha
}
}

StringBuffer &makeRemoteLFN(StringBuffer &remoteLfn, const char *remoteStorageName, const char *remotePrefix, const char *lfn)
static StringBuffer &makeRemoteLFN(StringBuffer &remoteLfn, const char *remoteStorageName, const char *remotePrefix, const char *lfn)
{
if (isEmptyString(remoteStorageName))
return remoteLfn;
remoteLfn.append("remote::").append(remoteStorageName).append("::");
if (remotePrefix && *remotePrefix)
if (!isEmptyString(remotePrefix))
remoteLfn.append(remotePrefix).append("::");
return remoteLfn.append(lfn);
}
Expand Down
4 changes: 4 additions & 0 deletions helm/hpcc/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,10 @@
},
"hpa": {
"$ref": "#/definitions/hpa"
},
"expert": {
"description": "Custom internal options usually reserved for internal testing",
"type": "object"
}
}
},
Expand Down

0 comments on commit cf89f71

Please sign in to comment.