Skip to content

Commit 43abfe2

Browse files
Fix debug message
1 parent 83f2c3e commit 43abfe2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future
2-
Version: 1.58.0-9000
2+
Version: 1.58.0-9001
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Depends:
55
R (>= 3.2.0)

R/protected_api-FutureResult-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ assertFutureResult <- function(future, debug = FALSE) {
140140
if (debug) mdebug("Future uuid: <none> (skipping)")
141141
return(NULL)
142142
}
143-
if (debug) mdebugf("Future uuid: %s", uuid)
143+
if (debug) mdebugf("Future uuid: %s", paste(uuid, collapse = "-"))
144144
if (identical(uuid, future[["uuid"]])) {
145145
if (debug) mdebug("identical; success")
146146
return(NULL)

0 commit comments

Comments
 (0)