Skip to content

Commit 2972cac

Browse files
authored
Merge pull request #525 from JuliaParallel/jps/darray-disable-index-caching
DArray: Fix broken indexing caching
2 parents 4cb4a36 + 25da7b0 commit 2972cac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/array/darray.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ function Base.show(io::IO, ::MIME"text/plain", A::DArray{T,N}) where {T,N}
270270
printstyled(io, "~$(round(Int, pct_complete))% completed"; color=:yellow)
271271
end
272272
println(io)
273-
with_index_caching(1) do
273+
# FIXME: with_index_caching(1) do
274274
Base.print_array(IOContext(io, :compact=>true), ColorArray(A))
275-
end
275+
# end
276276
end
277277

278278
function (==)(x::ArrayOp, y::ArrayOp)

0 commit comments

Comments
 (0)