1
Fork 0
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:
TacticalCoderJay 2022-11-06 10:29:42 -08:00 committed by GitHub
parent 642b0fdc95
commit 1ecf979721
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -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 ', '')

View file

@ -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.');