Skip to content

Commit

Permalink
Apply cfformat changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano authored and github-actions[bot] committed Mar 11, 2024
1 parent a646e5d commit 9248510
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 9248510

Please sign in to comment.