diff --git a/spartan/aztec-postgres/templates/statefulset.yaml b/spartan/aztec-postgres/templates/statefulset.yaml index 52e1191c0ff7..bd8974ced5bb 100644 --- a/spartan/aztec-postgres/templates/statefulset.yaml +++ b/spartan/aztec-postgres/templates/statefulset.yaml @@ -22,9 +22,9 @@ spec: - name: postgres image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} + command: ["/bin/sh", "-c"] args: - - -c - - max_connections={{ .Values.maxConnections }} + - "docker-entrypoint.sh postgres -c max_connections={{ .Values.maxConnections }} 2>&1" ports: - containerPort: 5432 name: postgres diff --git a/yarn-project/p2p/src/services/reqresp/reqresp.ts b/yarn-project/p2p/src/services/reqresp/reqresp.ts index 0f9fec565566..bd15d5ff6c4e 100644 --- a/yarn-project/p2p/src/services/reqresp/reqresp.ts +++ b/yarn-project/p2p/src/services/reqresp/reqresp.ts @@ -320,7 +320,7 @@ export class ReqResp implements ReqRespInterface { }; for (const index of indices) { - this.logger.info(`Sending request ${index} to peer ${peerAsString}`); + this.logger.trace(`Sending request ${index} to peer ${peerAsString}`); const response = await this.sendRequestToPeer(peer, subProtocol, requestBuffers[index]); // Check the status of the response buffer