Skip to content

Commit 41a6261

Browse files
committed
Merged PR 675714: Add serialization of FileArtifactKeyedHash.IsExecutable to OpenBondConversionUtils
The field was not being transmitted through our gRPC layer Related work items: #1978681
1 parent b2c003a commit 41a6261

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Public/Src/Engine/Dll/Distribution/Grpc/OpenBondConversionUtils.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ public static PipBuildRequest ToGrpc(this OpenBond.PipBuildRequest message)
262262
RewriteCount = i.RewriteCount,
263263
IsSourceAffected = i.IsSourceAffected,
264264
IsAllowedFileRewrite = i.IsAllowedFileRewrite,
265+
IsExecutable = i.IsExecutable,
265266
};
266267

267268
if (i.ReparsePointTarget != null)
@@ -336,6 +337,7 @@ public static OpenBond.PipBuildRequest ToOpenBond(this PipBuildRequest message)
336337
RewriteCount = i.RewriteCount,
337338
IsSourceAffected = i.IsSourceAffected,
338339
IsAllowedFileRewrite = i.IsAllowedFileRewrite,
340+
IsExecutable = i.IsExecutable
339341
});
340342
}
341343

0 commit comments

Comments
 (0)