Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.6.x' into candidate-…
Browse files Browse the repository at this point in the history
…9.8.x
  • Loading branch information
GordonSmith committed Feb 6, 2025
2 parents b8ca860 + 3f4002a commit efecd3d
Show file tree
Hide file tree
Showing 13 changed files with 4,415 additions and 2,560 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,5 @@ jobs:
with:
os: macos-13
build-type: 'Release'
cmake-configuration-ex: '-DUSE_CPPUNIT=OFF -DCLIENTTOOLS_ONLY=ON -DINCLUDE_PLUGINS=OFF -DUSE_AZURE=OFF -DUSE_CASSANDRA=OFF -DUSE_PARQUET=OFF -DSUPPRESS_CASSANDRAEMBED=ON -DUSE_JAVA=OFF -DUSE_OPENLDAP=OFF'
cmake-configuration-ex: '-DUSE_CPPUNIT=OFF -DCLIENTTOOLS_ONLY=ON -DINCLUDE_PLUGINS=OFF -DUSE_AZURE=OFF -DUSE_CASSANDRA=OFF -DSUPPRESS_CASSANDRAEMBED=ON -DUSE_JAVA=OFF -DUSE_OPENLDAP=OFF'
secrets: inherit

5 changes: 5 additions & 0 deletions esp/clients/wsdfuaccess/wsdfuaccess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,11 @@ IPropertyTree *createDFUFileMetaInfo(const char *fileName, IFileDescriptor *file
Owned<IPropertyTree> metaInfo = createPTree();

metaInfo->setProp("logicalFilename", fileName);

// "group" is for info. only. dafilesrv's may use it to show context in error messages.
const char *fileGroup = fileDesc->queryProperties().queryProp("@group");
metaInfo->setProp("group", nullText(fileGroup)); // NB: should never be missing

if (!isEmptyString(requestId))
metaInfo->setProp("requestId", requestId);
metaInfo->setProp("accessType", accessType);
Expand Down
1 change: 0 additions & 1 deletion esp/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<script src="/esp/files/node_modules/es6-promise/dist/es6-promise.auto.min.js"></script>
<link rel="stylesheet" href="/esp/files/dist/font-awesome/css/font-awesome.min.css">
<link rel="icon" type="image/png" href="/esp/files/img/favlogo.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<style>
body {
padding: 0px;
Expand Down
Loading

0 comments on commit efecd3d

Please sign in to comment.