Skip to content

Commit c50f9b0

Browse files
committed
Fixup missing renaming of runtime-requirements.txt
CMK-21299 Change-Id: I217dff3a790625abd1418468f700296bad3cf932
1 parent 3ceacb7 commit c50f9b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ create_python_requirements(
197197
# Broken third party packages
198198
"netapp-ontap", # their build process is broken, see https://github.com/NetApp/ontap-rest-python/issues/46
199199
],
200-
requirements_lock = "//:requirements_runtime_lock.txt",
200+
requirements_lock = "//:runtime-requirements.txt",
201201
)
202202

203203
load("//omd/packages/mod_wsgi:mod_wsgi_http.bzl", "mod_wsgi_workspace")

tests/testlib/script_helpers/dockerized_execution.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,10 +264,10 @@ def container_name_suffix(distro_name: str, docker_tag: str) -> str:
264264
However they need to be informative but unique to avoid conflicts.
265265
In order to be able to use the same naming scheme for incremental test-image builds soon,
266266
we put everything in that qualifies a container for a certain scenario (distro, docker_tag,
267-
requirements_runtime_lock.txt) but make it 'unique' for now by adding a timestamp"""
267+
runtime-requirements.txt) but make it 'unique' for now by adding a timestamp"""
268268
return (
269269
f"{distro_name}-{docker_tag}"
270-
f"-{git_commit_id('requirements_runtime_lock.txt')[:10]}"
270+
f"-{git_commit_id('runtime-requirements.txt')[:10]}"
271271
f"-{time.strftime('%Y%m%d%H%M%S')}"
272272
)
273273

0 commit comments

Comments
 (0)