Skip to content

Commit

Permalink
disable checking cache (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
avently authored Sep 20, 2023
1 parent 3e48354 commit f5659c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/bank.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ static int AllocatePluginFile (module_bank_t *bank, const char *abspath,

if (plugin != NULL
&& (plugin->mtime != (int64_t)st->st_mtime
|| plugin->size != (uint64_t)st->st_size))
|| plugin->size != (uint64_t)st->st_size) && false)
{
msg_Err(bank->obj, "stale plugins cache: modified %s",
plugin->abspath);
Expand Down

0 comments on commit f5659c9

Please sign in to comment.