Skip to content

Commit

Permalink
release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iancoffey committed Dec 15, 2020
1 parent 204483a commit 014fe3a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bentobuild/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def safe_build(self,
def create_builder_job(self, service, image, ns,
name=default_name):

job = self.api.create_builder_pod(
job = self.api.create_builder_job(
name,
image,
ns,
Expand Down
2 changes: 1 addition & 1 deletion bentobuild/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.4
0.0.5
12 changes: 6 additions & 6 deletions bin/run_once.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Copyright 2020 VMware, Inc.
# SPDX-License-Identifier: Apache-2

from bentobuild.job import BentoJobBuilder
from bentobuild import job
import threading
import sys

b = BentoJobBuilder()
job = b.safe_build(sys.argv[1], sys.argv[2], sys.argv[3])
print(type(job))
b.status(job)
b = job.BentoJobBuilder()
j = b.safe_build(sys.argv[1], sys.argv[2], sys.argv[3])
print(type(j))
b.status(j)


def printit():
threading.Timer(5.0, printit).start()
b.status(job)
b.status(j)


printit()

0 comments on commit 014fe3a

Please sign in to comment.