Skip to content

Commit c5dde14

Browse files
generatedunixname89002005232357facebook-github-bot
generatedunixname89002005232357
authored andcommitted
Revert D64465025: Multisect successfully blamed "D64465025: make_py_package: don't mutate dep_artifacts" for one test failure
Summary: This diff reverts D64465025 D64465025: make_py_package: don't mutate dep_artifacts by zsol causes the following test failure: Tests affected: - [cogwheel:cogwheel_101_test#main](https://www.internalfb.com/intern/test/562949974597406/) Here's the Multisect link: https://www.internalfb.com/multisect/12332686 Here are the tasks that are relevant to this breakage: T204263932: Some tests failing for cogwheel The backout may land if someone accepts it. If this diff has been generated in error, you can Commandeer and Abandon it. Reviewed By: justintrudell Differential Revision: D64477010 fbshipit-source-id: 81c6c27bbbc3bed0e86f7e0dd7ccf6772881ab32
1 parent 33c0470 commit c5dde14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prelude/python/make_py_package.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ def _pex_modules_args(
647647
if pex_modules.compile:
648648
pyc_mode = PycInvalidationMode("UNCHECKED_HASH") if symlink_tree_path == None else PycInvalidationMode("CHECKED_HASH")
649649
bytecode_manifests = pex_modules.manifests.bytecode_manifests(pyc_mode)
650-
dep_artifacts = dep_artifacts + [a[0] for a in pex_modules.manifests.bytecode_artifacts_with_paths(pyc_mode)]
650+
dep_artifacts.extend([a[0] for a in pex_modules.manifests.bytecode_artifacts_with_paths(pyc_mode)])
651651

652652
bytecode_manifests_path = ctx.actions.write(
653653
"__bytecode_manifests{}.txt".format(output_suffix),

0 commit comments

Comments
 (0)