We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b29dc0 commit cfb6290Copy full SHA for cfb6290
test/orchestratord/mzcompose.py
@@ -1114,21 +1114,18 @@ def run(definition: dict[str, Any]):
1114
1115
for i in range(120):
1116
try:
1117
- pod_names = (
1118
- spawn.capture(
1119
- [
1120
- "kubectl",
1121
- "get",
1122
- "pods",
1123
- "-n",
1124
- "materialize",
1125
- "-o",
1126
- "name",
1127
- ],
1128
- stderr=subprocess.DEVNULL,
1129
- )
1130
- .strip()
1131
- .split("\n")
+ spawn.capture(
+ [
+ "kubectl",
+ "get",
+ "crd",
+ "materializes.materialize.cloud",
+ "-n",
+ "materialize",
+ "-o",
+ "name",
+ ],
+ stderr=subprocess.DEVNULL,
1132
)
1133
for pod_name in pod_names:
1134
status = spawn.capture(
0 commit comments