mirror of
https://github.com/diced/zipline.git
synced 2025-04-04 23:21:17 -05:00
fix: housekeeping (#215)
* chore: remove console.log * chore: update error message to env file
This commit is contained in:
parent
642b0fdc95
commit
1ecf979721
2 changed files with 1 additions and 2 deletions
|
@ -64,7 +64,6 @@ async function handler(req: NextApiReq, res: NextApiRes) {
|
|||
|
||||
// handle partial uploads before ratelimits
|
||||
if (req.headers['content-range']) {
|
||||
console.log(req.files);
|
||||
// parses content-range header (bytes start-end/total)
|
||||
const [start, end, total] = req.headers['content-range']
|
||||
.replace('bytes ', '')
|
||||
|
|
|
@ -28,7 +28,7 @@ async function start() {
|
|||
);
|
||||
logger.error('Please change your secret in the config file or environment variables.');
|
||||
logger.error(
|
||||
'The config file is located at `config.toml`, or if using docker-compose you can change the variables in the `docker-compose.yml` file.'
|
||||
'The config file is located at `.env.local`, or if using docker-compose you can change the variables in the `docker-compose.yml` file.'
|
||||
);
|
||||
logger.error('It is recomended to use a secret that is alphanumeric and randomized.');
|
||||
logger.error('A way you can generate this is through a password manager you may have.');
|
||||
|
|
Loading…
Add table
Reference in a new issue