I am getting the following error when importing an sql file in a step on bitbucket pipeline:
SQLSTATE[08S01]: Communication link failure: 1153 Got a packet bigger than 'max_allowed_packet' bytes (SQL: /*!40101 SET @saved_cs_client = @@character_set_client */;
I have a service defined:
definitions:
services:
mysql:
image: mysql:5.7
command: --max_allowed_packet=100M
environment:
MYSQL_DATABASE: 'homestead'
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
MYSQL_USER: 'homestead'
MYSQL_PASSWORD: 'secret'
and added
`command: --max_allowed_packet=100M`
but this doesn't resolve the issue.
Has anyone experienced this problem and can offer a solution?
Did you get any solution for the above error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.