Skip to content

Commit 9d2c3a7

Browse files
Merge pull request #153 from databrickslabs/feature/v0.0.9
CLI onboard cluster lib fix
2 parents 3080fe7 + a482169 commit 9d2c3a7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/cli.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,12 @@ def create_onnboarding_job(self, cmd: OnboardCommand):
290290
package_name="dlt_meta",
291291
entry_point="run",
292292
named_parameters=named_parameters,
293-
)
293+
),
294+
libraries=[
295+
jobs.compute.Library(
296+
pypi=compute.PythonPyPiLibrary(package=f"dlt-meta=={self.version}")
297+
)
298+
] if not cmd.serverless else None,
294299
),
295300
]
296301
)

0 commit comments

Comments
 (0)