Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
pix666 committed Jan 13, 2024
2 parents df20133 + ad4f039 commit 01a4b64
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.8.3](https://github.com/dldevinc/paper-rq/tree/v0.8.3) - 2024-01-13

### Bug Fixes

- Fixed job's stdout logging.

## [0.8.2](https://github.com/dldevinc/paper-rq/tree/v0.8.2) - 2023-12-13

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion paper_rq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.8.2"
__version__ = "0.8.3"
default_app_config = "paper_rq.apps.Config"
2 changes: 1 addition & 1 deletion paper_rq/patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def create_failure(cls, job, ttl, exc_string, pipeline=None):
job_id=job.id,
type=cls.Type.FAILED,
connection=job.connection,
stdout=getattr(job, "stdout", None),
stdout=getattr(job, "_stdout", None),
exc_string=exc_string,
serializer=job.serializer,
)
Expand Down

0 comments on commit 01a4b64

Please sign in to comment.