Skip to content

Commit b1f1d70

Browse files
authored
fix (#11)
1 parent 4a57190 commit b1f1d70

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

bdq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.0.4"
22

33
from pyspark.sql import SparkSession
44
spark = SparkSession.builder.getOrCreate()

bdq/dag.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ def _start(node: Node):
233233
running_nodes = running_nodes + 1
234234

235235
node.future = executor.submit(node)
236+
node._viz_update_state()
236237

237238
if verbose:
238239
print(f" starting: {node}")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "bdq"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = [
55
{ name="Grzegorz Rusin", email="grzegorz.rusin@databricks.com" },
66
]

0 commit comments

Comments
 (0)