suninuni commented on issue #23513:
URL: https://github.com/apache/pulsar/issues/23513#issuecomment-2436687388

   @lhotari 
   
   I think we need an integration test for Standalone's  
`--metadata-url=etcd://xxx`   param.
   
   Related https://github.com/apache/pulsar/pull/17077/files
   
   This is a simple docker-compose.yml which can reproduce the problem
   
   ```
   version: '2'
   services:
     pulsar:
       image: dockerpull.com/apachepulsar/pulsar:4.0.0
       container_name: pulsar
       command: >
         sh -c 'bin/apply-config-from-env.py conf/standalone.conf &&
                bin/apply-config-from-env.py conf/client.conf &&
                exec bin/pulsar standalone 
--metadata-url=etcd:http://pulsar-etcd:2379'
       environment:
         PULSAR_MEM: -Xms256m -Xmx256m -XX:MaxDirectMemorySize=256m
         BOOKIE_MEM: -Xms256m -Xmx256m -XX:MaxDirectMemorySize=256m
         PULSAR_PREFIX_advertisedAddress: pulsar
         PULSAR_PREFIX_webServiceUrl: http://pulsar:8080/
         PULSAR_PREFIX_authenticationEnabled: 'false'
         PULSAR_PREFIX_defaultRetentionSizeInMB: '1024'
         PULSAR_PREFIX_defaultRetentionTimeInMinutes: '4320'
         PULSAR_PREFIX_forceDeleteNamespaceAllowed: 'true'
       stop_grace_period: 30s
   ````


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to