dev-consumer-timeout-fix #7

Merged
ffabi1997 merged 5 commits from dev-consumer-timeout-fix into dev 2020-05-08 20:05:34 +02:00
3 changed files with 4 additions and 2 deletions
Showing only changes of commit eb03474392 - Show all commits

View File

@ -19,6 +19,8 @@ sentry_sdk.init("https://0a106e104e114bc9a3fa47f9cb0db2f4@sentry.kmlabz.com/10")
app = Flask(__name__)
app.config['REDIS_URL'] = os.environ['REDIS_URL']
app.config['LOCAL_UUID'] = os.environ['LOCAL_UUID']
app.config['CUSTOMER_TIMEOUT'] = int(os.environ.get('CUSTOMER_TIMEOUT', 30))
app.config['PRODUCER_TIMEOUT'] = int(os.environ.get('PRODUCER_TIMEOUT', 60))
redis_client.init_app(app)

View File

@ -23,7 +23,7 @@ class LogView(FlaskView):
# update expirity
redis_client.set(prod_key, remote_ip.encode('utf-8'))
redis_client.expire(prod_key, 240)
redis_client.expire(prod_key, current_app.config["PRODUCER_TIMEOUT"])
# print out message
current_app.logger.info(f"New message: {request.json['message']}")

View File

@ -29,7 +29,7 @@ class SyncView(FlaskView):
}
redis_client.set(cust_key, json.dumps(info).encode('utf-8'))
redis_client.expire(cust_key, 30)
redis_client.expire(cust_key, current_app.config["CUSTOMER_TIMEOUT"])
response = {
"uuid": current_app.config['LOCAL_UUID']