Skip to content

Commit

Permalink
Merge branch 'development' of github.com:coldbox-modules/cbstorages i…
Browse files Browse the repository at this point in the history
…nto development
  • Loading branch information
lmajano committed Mar 11, 2024
2 parents 04236db + 9248510 commit d56eef3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions models/AbstractStorage.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ component accessors="true" serializable="false" {
/**
* Lock Name : If you want to lock the storage, you can provide a lock name
*/
property name="lockName" type="string" default="";
property
name ="lockName"
type ="string"
default="";

// Setup defaults
variables.lockTimeout = 20;
variables.lockName = hash( now() );
variables.lockName = hash( now() );

/**
* Do a multi-set using a target structure of name-value pairs
Expand Down

0 comments on commit d56eef3

Please sign in to comment.