Skip to content

Commit 426fb92

Browse files
authored
Merge pull request #24 from r2luna/fix/context-process
fix: use Context::add() to prevent tasks linking to wrong process (#20)
2 parents aece169 + 58b5b68 commit 426fb92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Process.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function __construct(
6565

6666
$this->name = (new ReflectionClass($this))->getName();
6767

68-
Context::push('process', $this->name, $this->uuid);
68+
Context::add('process', [$this->name, $this->uuid]);
6969
}
7070

7171
/**

0 commit comments

Comments
 (0)