This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##Config changes that need to be made to enforce a TLS only redis cluster with sentinel | |
| protected-mode no | |
| # port <sentinel-port> | |
| # The port that this sentinel instance will run on | |
| #port 26379 | |
| port 0 | |
| #Redis docs show that it should inherit settings from the redis.conf but it doesn't add them here | |
| tls-port 26379 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| :: Formerly known as::: | |
| :: GIFEncoder Version 2.0 by László Zsidi, http://gifs.hu | |
| :: | |
| :: This class is a rewritten 'GifMerge.class.php' version. | |
| :: | |
| :: Modification: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Data; | |
| using System.Data.Entity.Core.EntityClient; | |
| using System.Data.Entity.Core.Metadata.Edm; | |
| using System.Data.Entity.Core.Objects; | |
| using System.Data.Entity.Core.Objects.DataClasses; | |
| using System.Data.SqlClient; | |
| using System.Linq; | |
| using System.Text; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Quartz; | |
| [PersistJobDataAfterExecution] | |
| public class Main : IJob | |
| { | |
| private IJobExecutionContext _jobExecutionContext; | |
| public void Execute(IJobExecutionContext context) | |
| { | |
| _jobExecutionContext = context; |