<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="222411" data-post-id="222411">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hectorperez" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hectorperez/120/27441_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hectorperez
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Hi, I have the same problem when running my tests just after installing Oban web+pro:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">[error] GenServer {Oban.Registry, {Oban, {:plugin, Oban.Plugins.Stager}}} terminating
** (DBConnection.OwnershipError) cannot find ownership process for #PID&lt;0.535.0&gt;.

When using ownership, you must manage connections in one
of the four ways:

* By explicitly checking out a connection
* By explicitly allowing a spawned process
* By running the pool in shared mode
* By using :caller option with allowed process
</code></pre>
<p>When I open a console in <strong>test</strong> environment, it still has the Oban config from <code>config.exs</code> instead of the config from <code>test.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">MIX_ENV=test iex -S mix
Oban.config()
</code></pre>
<pre data-code-wrap="elixir"><code class="lang-elixir">%Oban.Config{
  circuit_backoff: 30000,
  dispatch_cooldown: 5,
  engine: Oban.Pro.Queue.SmartEngine,
  get_dynamic_repo: nil,
  log: false, 
  name: Oban,
  node: "Hectors-MBP-2",
  notifier: Oban.PostgresNotifier,
  plugins: [Oban.Pro.Plugins.Lifeline, Oban.Web.Plugins.Stats,
   Oban.Plugins.Gossip, Oban.Pro.Plugins.DynamicPruner, Oban.Plugins.Stager],
  prefix: "public",
  queues: [
    default: [limit: 5],
    mailers: [limit: 5],
    events: [limit: 5],
    notifications: [limit: 5]
  ],
  repo: Wikir.Repo,
  shutdown_grace_period: 15000
}
</code></pre>
<p>However, <code>test.exs</code> seems to be loaded as <code>MyApp.Repo.config()</code> returns my test database.</p>
<p>In <code>test.exs</code> I have:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :wikir, Oban, queues: false, plugins: false
</code></pre>
<p>And in <code>config.exs</code> I have:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :wikir, Oban,
  repo: Wikir.Repo,
  engine: Oban.Pro.Queue.SmartEngine,
  plugins: [
    Oban.Pro.Plugins.DynamicPruner,
    Oban.Plugins.Gossip,
    Oban.Web.Plugins.Stats,
    Oban.Pro.Plugins.Lifeline],
  queues: [default: 5, mailers: 5, events: 5, notifications: 5],
  plugins: [{Oban.Pro.Plugins.DynamicPruner, mode: {:max_len, 50_000}}]
</code></pre>
<p>Any idea? Thanks!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222411" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/12">Post #11</a>
	                </div>
	            </div>
              <div id="likers-container-222411" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222411"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #11"></div>
  </section>
</div>
    <div class="postbit" id="222417" data-post-id="222417">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="sorentwo" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/120/37360_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  sorentwo
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Oban Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Your config has <code>plugins</code> listed twice. Keyword lists (like config) allow that, but it breaks merging and therefore the Oban config.</p>
<p>Combine the two plugin lists and you’re golden <img src="https://forum.elixirforum.com/images/emoji/apple/slightly_smiling_face.png?v=15" title=":slightly_smiling_face:" class="emoji" alt=":slightly_smiling_face:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222417" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/13">Post #12</a>
	                </div>
	            </div>
              <div id="likers-container-222417" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222417"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #12"></div>
  </section>
</div>
    <div class="postbit" id="222425" data-post-id="222425">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hectorperez" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hectorperez/120/27441_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hectorperez
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Makes sense, thank you <a class="mention" href="/u/sorentwo" rel="nofollow">@sorentwo</a>. However tests are still failing and <code>Oban.config()</code> in <code>test</code> env still returns all queues and plugins:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">MIX_ENV=test iex -S mix
iex(2)&gt; Oban.config()      
%Oban.Config{
  circuit_backoff: 30000,
  dispatch_cooldown: 5,
  engine: Oban.Pro.Queue.SmartEngine,
  get_dynamic_repo: nil,
  log: false, 
  name: Oban,
  node: "Hectors-MBP-2",
  notifier: Oban.PostgresNotifier,
  plugins: [
    {Oban.Pro.Plugins.DynamicPruner, [mode: {:max_len, 50000}]},
    Oban.Pro.Plugins.Lifeline,
    Oban.Web.Plugins.Stats,
    Oban.Plugins.Gossip,
    Oban.Plugins.Stager
  ],
  prefix: "public",
  queues: [
    default: [limit: 5],
    mailers: [limit: 5],
    events: [limit: 5],
    notifications: [limit: 5]
  ],
  repo: Wikir.Repo,
  shutdown_grace_period: 15000
}
</code></pre>
<p>Current <code>config.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :wikir, Oban,
  repo: Wikir.Repo,
  engine: Oban.Pro.Queue.SmartEngine,
  plugins: [
    Oban.Pro.Plugins.DynamicPruner,
    Oban.Plugins.Gossip,
    Oban.Web.Plugins.Stats,
    Oban.Pro.Plugins.Lifeline,
    {Oban.Pro.Plugins.DynamicPruner, mode: {:max_len, 50_000}}],
  queues: [default: 5, mailers: 5, events: 5, notifications: 5]
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222425" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/14">Post #13</a>
	                </div>
	            </div>
              <div id="likers-container-222425" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222425"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #13"></div>
  </section>
</div>
    <div class="postbit" id="222480" data-post-id="222480">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="sorentwo" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/120/37360_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  sorentwo
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Oban Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Can you confirm that the test config was applied?</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">Application.get_env(:wikir, Oban)
</code></pre>
<p>That should have <code>queues: false</code> and <code>plugins: false</code>.</p>
<p>Can you also confirm that you’re using that config in your application’s supervision tree?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222480" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/15">Post #14</a>
	                </div>
	            </div>
              <div id="likers-container-222480" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222480"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #14"></div>
  </section>
</div>
    <div class="postbit" id="222547" data-post-id="222547">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hectorperez" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hectorperez/120/27441_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hectorperez
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="sorentwo" data-post="15" data-topic="41038">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/48/37360_2.png" class="avatar"> sorentwo:</div>
<blockquote>
<p>Can you confirm that the test config was applied?<br>
<code>Application.get_env(:wikir, Oban)</code></p>
</blockquote>
</aside>
<p>It isn’t being applied:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">MIX_ENV=test iex -S mix
iex(5)&gt; Application.get_env(:wikir, Oban)
[
  repo: Wikir.Repo,
  engine: Oban.Pro.Queue.SmartEngine,
  plugins: [
    Oban.Pro.Plugins.DynamicPruner,
    Oban.Plugins.Gossip,
    Oban.Web.Plugins.Stats,
    Oban.Pro.Plugins.Lifeline,
    {Oban.Pro.Plugins.DynamicPruner, [mode: {:max_len, 50000}]}
  ],
  queues: [default: 5, mailers: 5, events: 5, notifications: 5]
]
</code></pre>
<aside class="quote no-group" data-username="sorentwo" data-post="15" data-topic="41038">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/48/37360_2.png" class="avatar"> sorentwo:</div>
<blockquote>
<p>Can you also confirm that you’re using that config in your application’s supervision tree?</p>
</blockquote>
</aside>
<p><code>application.ex</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">defmodule Wikir.Application do
  @moduledoc false

  use Application

  def start(_type, _args) do
    children = [
      Wikir.Repo,
      Wikir.LinkerServer,
      WikirWeb.Telemetry,
      {Phoenix.PubSub, name: Wikir.PubSub},
      WikirWeb.Endpoint,
      {Oban, oban_config()}
    ]

    opts = [strategy: :one_for_one, name: Wikir.Supervisor]
    Supervisor.start_link(children, opts)
  end

  def config_change(changed, _new, removed) do
    WikirWeb.Endpoint.config_change(changed, removed)
    :ok
  end

  defp oban_config do
    Application.fetch_env!(:wikir, Oban)
  end
end
</code></pre>
<p>And <code>test.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">use Mix.Config
config :wikir, Wikir.Repo,
  ...

config :wikir, Oban, queues: false, plugins: false
...
</code></pre>
<p>Any idea about what am I doing wrong? Thank you!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222547" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/16">Post #15</a>
	                </div>
	            </div>
              <div id="likers-container-222547" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222547"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #15"></div>
  </section>
</div>
    <div class="postbit" id="222571" data-post-id="222571">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="sorentwo" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/120/37360_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  sorentwo
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Oban Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Overriding and merging application config is handled by Elixir/Erlang, that isn’t something that Oban is doing. Provided you have <code>import_config "#{Mix.env()}.exs"</code> at the end of your <code>config.exs</code>, everything should work as expected.</p>
<p>To test more you can put something like this in <code>test.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :wikir, Random.Thing, does_this_work?: true
</code></pre>
<p>Then check with <code>Application.get_env(:wikir, Random.Thing)</code>.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222571" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/17">Post #16</a>
	                </div>
	            </div>
              <div id="likers-container-222571" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222571"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #16"></div>
  </section>
</div>
    <div class="postbit" id="222579" data-post-id="222579">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hectorperez" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hectorperez/120/27441_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hectorperez
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I had <code>import_config</code> above Oban’s config. What a silly mistake.<br>
Many thanks <a class="mention" href="/u/sorentwo" rel="nofollow">@sorentwo</a> and sorry for the inconvenience!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="222579" data-batch-url="/posts/batch_likers">
                        5
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/18">Post #17</a>
	                </div>
	            </div>
              <div id="likers-container-222579" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="222579"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #17"></div>
  </section>
</div>
    <div class="postbit" id="258913" data-post-id="258913">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="richcooper95" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/richcooper95/120/27420_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  richcooper95
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Hit this too and the fix worked perfectly, thanks!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="258913" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/19">Post #18</a>
	                </div>
	            </div>
              <div id="likers-container-258913" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="258913"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #18"></div>
  </section>
</div>
    <div class="postbit" id="292383" data-post-id="292383">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="KristerV" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/KristerV/120/13808_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  KristerV
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>this took me a while to find, but besides disabling queues one should also use manual mode.</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">config :platform, Oban, plugins: false, queues: false, testing: :manual
</code></pre>
<p>I thought i had RTFM already, but since for whatever reason i hadn’t seen the actual section, i’ll link it here:</p>
<aside class="onebox allowlistedgeneric" data-onebox-src="https://oban.hexdocs.pm/testing.html">
  <header class="source">

      <a href="https://oban.hexdocs.pm/testing.html" target="_blank" rel="noopener nofollow ugc">oban.hexdocs.pm</a>
  </header>

  <article class="onebox-body">
    

<h3><a href="https://oban.hexdocs.pm/testing.html" target="_blank" rel="noopener nofollow ugc">Introduction to Testing — Oban v2.23.0</a></h3>



  </article>

  <div class="onebox-metadata">
    
    
  </div>

  <div style="clear: both"></div>
</aside>
 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292383" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/20">Post #19</a>
	                </div>
	            </div>
              <div id="likers-container-292383" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292383"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #19"></div>
  </section>
</div>
    <div class="postbit" id="292401" data-post-id="292401">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="sorentwo" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/sorentwo/120/37360_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  sorentwo
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Oban Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>You <strong>shouldn’t</strong> use <code>queues: false</code> or <code>plugins: false</code> anymore. Those are handled by <code>testing</code> modes, and leaving the original configuration let’s Oban verify the full config in the test environment.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292401" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/error-genserver-oban-registry-oban-plugin-oban-plugins-stager/41038/21">Post #20</a>
	                </div>
	            </div>
              <div id="likers-container-292401" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292401"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-last-post cat-last-post" title="Last post!"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <span class="all-loaded">— All posts loaded —</span>
</div></template></turbo-stream>