AiVdbProviderClientBase calls undefined method deleteFromCollection
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3536096. --> Reported by: [mediabounds](https://www.drupal.org/user/292228) Related to !760 >>> <p>The <code>deleteItems</code> implementation on <code>AiVdbProviderClientBase</code> attempts to call <code>deleteFromCollection</code> on the wrong object.</p> <pre><pre>$this-&gt;getClient()-&gt;deleteFromCollection(<br>&nbsp; collection_name: $configuration['database_settings']['collection'],<br>&nbsp; ids: $vdbIds,<br>&nbsp; database_name: $configuration['database_settings']['database_name'],<br>);</pre></pre><p>Should be...</p> <pre><pre>$this-&gt;deleteFromCollection(<br>&nbsp; collection_name: $configuration['database_settings']['collection'],<br>&nbsp; ids: $vdbIds,<br>&nbsp; database: $configuration['database_settings']['database_name'],<br>);</pre></pre><p> MR incoming</p>
issue