Skip to content

Commit

Permalink
Update AdapterInterfaceCacheMethod.php
Browse files Browse the repository at this point in the history
Fixed synchronisation timeout in seconds that was set to 1 second, now it's 30
  • Loading branch information
tztztztz committed Aug 13, 2018
1 parent bb046d6 commit a727be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/inopx/cache/AdapterInterfaceCacheMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ abstract class AdapterInterfaceCacheMethod implements \inopx\cache\InterfaceCach
* Synchronisation timeout in seconds. Default 30 sec.
* @var int
*/
protected $syncTimeoutSeconds = 1;
protected $syncTimeoutSeconds = 30;

/**
* Input/output transformer.
Expand Down

1 comment on commit a727be8

@tztztztz
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a minor issue as timeout in the Constructor (at line no 79) was already set to 30 seconds.

Please sign in to comment.