# Does Infiltrator work with Revise?

**URL:** https://discourse.julialang.org/t/does-infiltrator-work-with-revise/99842
**Category:** VS Code
**Tags:** question
**Created:** [June 4, 2023, 11:09am UTC](https://discourse.julialang.org/t/does-infiltrator-work-with-revise/99842 "2023-06-04T11:09:12Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Soldalma](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/soldalma/32/29388_2.png) [@Soldalma](https://discourse.julialang.org/u/Soldalma)
#### Post date: [June 4, 2023, 11:09am UTC](https://discourse.julialang.org/t/does-infiltrator-work-with-revise/99842/1 "2023-06-04T11:09:12Z")

</div>

I tried to use @infiltrate in my code as follows:

```julia
    ...
    println("\n\n1 &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*")
    println( "Debugging")
    @infiltrate
    ...

```

but I got the following:

```julia
1 &*&*&*&*&*&*&*&*&*&*&*&*&*&*&*
Debugging
ERROR: Disabling the infiltration point in model_precalculate(model_data::ModelFunctions.ModelData, df::DataFrame; report_exec_time::Bool) at ModelFunctions.jl:3427.
Infiltrating fully asynchronous code is currently not possible. You may be trying
to infiltrate an @async task or are using inline evaluation in VS Code or Juno.

Infiltration points can be re-enabled with Infiltrator.clear_disabled!() and
this check is toggled with Infiltrator.toggle_async_check(false).

```

Someone suggested to me that Infiltrator might not work with Revise.jl. Is that the reason for this error? (I am not using asynchronous code and I am not clear about the meaning of an “inline evaluation”)

---

<div class="post-metadata">

### Author: ![pfitzseb](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/pfitzseb/32/45566_2.png) [@pfitzseb](https://discourse.julialang.org/u/pfitzseb)
#### Post date: [June 5, 2023, 2:11pm UTC](https://discourse.julialang.org/t/does-infiltrator-work-with-revise/99842/2 "2023-06-05T14:11:18Z")

</div>

Infiltrator and Revise work together very well. How are you running this code? Ctrl-Enter in a VS Code session? If so, that constitutes “inline evaluation” 🙂
