Skip to content

Commit

Permalink
oops extending the wrong cache
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Jan 14, 2025
1 parent f379dff commit 6a4275e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion system/cache/providers/BoxLangColdBoxProvider.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ component
accessors ="true"
serializable="false"
implements ="coldbox.system.cache.providers.IColdBoxProvider"
extends ="coldbox.system.cache.providers.LuceeProvider"
extends ="coldbox.system.cache.providers.BoxLangProvider"
{

// Cache Prefixes
Expand Down
2 changes: 2 additions & 0 deletions tests/specs/cache/providers/BoxLangProviderTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@
);
assertEquals( testVal, cache.get( "test" ) );
md = cache.getCachedObjectMetadata( "test" );
debug( md );

assertEquals( 60, md.lastAccessTimeout );
assertEquals( 120, md.timeout );
// debug(md);
Expand Down

0 comments on commit 6a4275e

Please sign in to comment.