Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when using the image conductoross/conductor:3.15.0 #31

Open
JCHacking opened this issue Jan 4, 2024 · 7 comments
Open

Error when using the image conductoross/conductor:3.15.0 #31

JCHacking opened this issue Jan 4, 2024 · 7 comments

Comments

@JCHacking
Copy link
Contributor

Describe the bug
With the following docker-compose:

services:
  conductor:
    container_name: conductor
    image: reg.1u1.it/dockerhub/conductoross/conductor:3.15.0
    ports:
      - 8080:8080
      - 5000:5000
    networks:
      - conductor
    volumes:
      - ./server/config.properties:/app/config/config.properties
    healthcheck:
      test: [ "CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health" ]
      interval: 30s
      timeout: 10s
      retries: 12
    depends_on:
      elastic:
        condition: service_healthy

  elastic:
    image: reg.1u1.it/dockerhub/elasticsearch:7.17.16
    container_name: elastic
    environment:
      - cluster.name=conductor-elastic-cluster
      - node.name=conductor-elastic-node-1
      - xpack.security.enabled=false
      - discovery.type=single-node
      - transport.host=0.0.0.0
      - "ES_JAVA_OPTS=-Xms512m -Xmx1024m"
      - bootstrap.memory_lock=true
    networks:
      - conductor
    ports:
      - 9200:9200
      - 9300:9300
    healthcheck:
      test: [ "CMD", "curl", "-I", "-XGET", "http://localhost:9200"]
      interval: 5s
      timeout: 5s
      retries: 12
    logging:
      driver: "json-file"
      options:
        max-size: "1k"
        max-file: "3"


networks:
  conductor:

And the following configuration file:

conductor.grpc-server.enabled=false

conductor.indexing.enabled=true
conductor.elasticsearch.version=7
conductor.elasticsearch.url=http://elastic:9200
conductor.elasticsearch.indexName=conductor
conductor.elasticsearch.indexReplicasCount=0

conductor.app.ownerEmailMandatory=false

I get the following error:

conductor  | 2024-01-04 10:44:23,338 ERROR [main] com.netflix.conductor.redis.dao.RedisMetadataDAO: refresh TaskDefs failed

This with my image generated from driver-community works, am I missing something?

Expected behavior
I hope I can use this docker image instead of having to generate one myself.

@manan164
Copy link
Contributor

manan164 commented Jan 4, 2024

Hi @JCHacking , is there any reason you are using custom docker-compose? There are some example docker-compose here

@JCHacking
Copy link
Contributor Author

JCHacking commented Jan 4, 2024

I simply adapted the docker-compose that I had (I used to generate the images myself and it was fine to lift on my local computer).

It used to work without redis, as far as I understand it used dynoqueues right?
Why is it necessary now? And why if I use the image it is, but if I compile and generate from conductor-community it is not?

@JCHacking
Copy link
Contributor Author

After further research, if I add redis it looks like and move on to have this docker-compose:

services:
  conductor:
    image: reg.1u1.it/dockerhub/conductoross/conductor:3.15.0
    container_name: conductor
    ports:
      - 8080:8080
      - 5000:5000
    networks:
      - conductor
    volumes:
      - ./server/config.properties:/app/config/config.properties
    healthcheck:
      test: [ "CMD", "curl","-I" ,"-XGET", "http://localhost:8080/health" ]
      interval: 30s
      timeout: 10s
      retries: 12
    depends_on:
      elastic:
        condition: service_healthy
      redis:
        condition: service_healthy
    logging:
      driver: "json-file"
      options:
        max-size: "1k"
        max-file: "3"

  redis:
    image: reg.1u1.it/dockerhub/redis:latest
    container_name: redis
    networks:
      - conductor
    ports:
      - 6379:6379
    healthcheck:
      test: [ "CMD", "redis-cli", "ping" ]
      interval: 5s
      timeout: 5s
      retries: 3

  elastic:
    image: reg.1u1.it/dockerhub/elasticsearch:7.17.16
    container_name: elastic
    environment:
      - cluster.name=conductor-elastic-cluster
      - node.name=conductor-elastic-node-1
      - xpack.security.enabled=false
      - discovery.type=single-node
      - transport.host=0.0.0.0
      - "ES_JAVA_OPTS=-Xms512m -Xmx1024m"
      - bootstrap.memory_lock=true
    networks:
      - conductor
    ports:
      - 9200:9200
      - 9300:9300
    healthcheck:
      test: [ "CMD", "curl", "-I", "-XGET", "http://localhost:9200"]
      interval: 5s
      timeout: 5s
      retries: 12
    logging:
      driver: "json-file"
      options:
        max-size: "1k"
        max-file: "3"


networks:
  conductor:

And this configuration:

# Database
conductor.db.type=redis_standalone

# Queues
conductor.queue.type=redis_standalone
conductor.redis.hosts=redis:6379:zone1
conductor.redis-lock.serverAddress=redis://redis:6379
conductor.redis.availabilityZone=zone1
conductor.redis.taskDefCacheRefreshInterval=1
conductor.redis.workflowNamespacePrefix=conductor
conductor.redis.queueNamespacePrefix=conductor_queues

# Index
conductor.indexing.enabled=true
conductor.elasticsearch.version=7
conductor.elasticsearch.url=http://elastic:9200
conductor.elasticsearch.indexName=conductor
conductor.elasticsearch.indexReplicasCount=0

# Others
conductor.grpc-server.enabled=false
conductor.app.ownerEmailMandatory=false
loadSample=false

It seems to be trying to get access through postgres when it is not configured to use it.
Configuration reading logs:

conductor  | Using /app/config/config.properties as the configuration file
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: PATH, Value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: HOSTNAME, Value: 5fa38f4662a7
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: LD_LIBRARY_PATH, Value: /usr/lib/jvm/java-17-openjdk/lib/server:/usr/lib/jvm/java-17-openjdk/li
b:/usr/lib/jvm/java-17-openjdk/../lib
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: OLDPWD, Value: /usr/share/nginx/html
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: PWD, Value: /app/libs
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: config_file, Value: /app/config/config.properties
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: LOG_FILE, Value: /app/logs/server.log
conductor  | 06:50:28.090 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: HOME, Value: /root
conductor  | 06:50:28.091 [main] INFO io.orkes.conductor.OrkesConductorApplication - System Env Props - Key: SHLVL, Value: 1
conductor  | 06:50:28.091 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.specification.version, Value: 17
conductor  | 06:50:28.091 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: CONDUCTOR_CONFIG_FILE, Value: /app/config/config.properties
conductor  | 06:50:28.091 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.jnu.encoding, Value: UTF-8
conductor  | 06:50:28.091 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.class.path, Value: server.jar
conductor  | 06:50:28.092 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: spring.devtools.restart.enabled, Value: false
conductor  | 06:50:28.092 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.vendor, Value: Alpine
conductor  | 06:50:28.092 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.arch.data.model, Value: 64
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vendor.url, Value: https://alpinelinux.org/
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.timezone, Value: GMT
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.specification.version, Value: 17
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: os.name, Value: Linux
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.java.launcher, Value: SUN_STANDARD
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.country, Value: US
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.boot.library.path, Value: /usr/lib/jvm/java-17-openjdk/lib
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.java.command, Value: server.jar
conductor  | 06:50:28.093 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: jdk.debug, Value: release
conductor  | 06:50:28.094 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.cpu.endian, Value: little
conductor  | 06:50:28.094 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.home, Value: /root
conductor  | 06:50:28.094 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.language, Value: en
conductor  | 06:50:28.094 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.specification.vendor, Value: Oracle Corporation
conductor  | 06:50:28.094 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.version.date, Value: 2023-10-17
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.home, Value: /usr/lib/jvm/java-17-openjdk
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: file.separator, Value: /
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.compressedOopsMode, Value: 32-bit
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: line.separator, Value:
conductor  | 
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.specification.name, Value: Java Platform API Specification
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.specification.vendor, Value: Oracle Corporation
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.protocol.handler.pkgs, Value: org.springframework.boot.loader
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.management.compiler, Value: HotSpot 64-Bit Tiered Compilers
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.runtime.version, Value: 17.0.9+8-alpine-r0
conductor  | 06:50:28.095 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.name, Value: root
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: path.separator, Value: :
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: os.version, Value: 5.10.102.1-microsoft-standard-WSL2
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.runtime.name, Value: OpenJDK Runtime Environment
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: file.encoding, Value: UTF-8
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.name, Value: OpenJDK 64-Bit Server VM
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vendor.url.bug, Value: https://gitlab.alpinelinux.org/alpine/aports/issues
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.io.tmpdir, Value: /tmp
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.version, Value: 17.0.9
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: user.dir, Value: /app/libs
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: os.arch, Value: amd64
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.specification.name, Value: Java Virtual Machine Specification
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: native.encoding, Value: UTF-8
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.library.path, Value: /usr/lib/jvm/java-17-openjdk/lib/server:/usr/lib/jvm/java-17-openjdk/lib:/us
r/lib/jvm/java-17-openjdk/../lib:/usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.info, Value: mixed mode, sharing
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vendor, Value: Alpine
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.vm.version, Value: 17.0.9+8-alpine-r0
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: sun.io.unicode.encoding, Value: UnicodeLittle
conductor  | 06:50:28.096 [main] INFO io.orkes.conductor.OrkesConductorApplication - Env Props - Key: java.class.version, Value: 61.0
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis-lock.serverAddress - redis://redis:6379
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.db.type - redis_standalone
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis.taskDefCacheRefreshInterval - 1
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.app.ownerEmailMandatory - false
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting loadSample - false
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.grpc-server.enabled - false
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.elasticsearch.indexName - conductor
conductor  | 06:50:28.099 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.elasticsearch.url - http://elastic:9200
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.elasticsearch.indexReplicasCount - 0
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.indexing.enabled - true
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis.workflowNamespacePrefix - conductor
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.elasticsearch.version - 7
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis.queueNamespacePrefix - conductor_queues
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis.hosts - redis:6379:zone1
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.redis.availabilityZone - zone1
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Setting conductor.queue.type - redis_standalone
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Loaded 16 properties from /app/config/config.properties
conductor  | 06:50:28.100 [main] INFO io.orkes.conductor.OrkesConductorApplication - Completed loading external configuration

First error:

conductor  | 2024-01-10 06:50:38,641 ERROR [main] com.zaxxer.hikari.pool.HikariPool: HikariPool-1 - Exception during pool initialization.
conductor  | org.postgresql.util.PSQLException: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
conductor  |    at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:303)
conductor  |    at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:51)
conductor  |    at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:225)
conductor  |    at org.postgresql.Driver.makeConnection(Driver.java:465)
conductor  |    at org.postgresql.Driver.connect(Driver.java:264)
conductor  |    at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
conductor  |    at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
conductor  |    at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
conductor  |    at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
conductor  |    at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561)
conductor  |    at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
conductor  |    at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
conductor  |    at org.flywaydb.core.internal.jdbc.JdbcUtils.openConnection(JdbcUtils.java:54)
conductor  |    at org.flywaydb.core.internal.jdbc.JdbcConnectionFactory.<init>(JdbcConnectionFactory.java:69)
conductor  |    at org.flywaydb.core.Flyway.execute(Flyway.java:508)
conductor  |    at org.flywaydb.core.Flyway.migrate(Flyway.java:165)
conductor  |    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
conductor  |    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
conductor  |    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
conductor  |    at java.base/java.lang.reflect.Method.invoke(Method.java:568)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java:1930)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1872)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1800)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:620)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:541)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.addCandidateEntry(DefaultListableBeanFactory.java:1609)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1573)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveMultipleBeans(DefaultListableBeanFactory.java:1462)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1349)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1391)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1311)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:887)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
conductor  |    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:229)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
conductor  |    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335)
conductor  |    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333)
conductor  |    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)
conductor  |    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955)
conductor  |    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920)
conductor  |    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583)
conductor  |    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145)
conductor  |    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:780)
conductor  |    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:453)
conductor  |    at org.springframework.boot.SpringApplication.run(SpringApplication.java:343)
conductor  |    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1370)
conductor  |    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1359)
conductor  |    at io.orkes.conductor.OrkesConductorApplication.main(OrkesConductorApplication.java:76)
conductor  |    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
conductor  |    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
conductor  |    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
conductor  |    at java.base/java.lang.reflect.Method.invoke(Method.java:568)
conductor  |    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49)
conductor  |    at org.springframework.boot.loader.Launcher.launch(Launcher.java:108)
conductor  |    at org.springframework.boot.loader.Launcher.launch(Launcher.java:58)
conductor  |    at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88)
conductor  | Caused by: java.net.ConnectException: Connection refused
conductor  |    at java.base/sun.nio.ch.Net.pollConnect(Native Method)
conductor  |    at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672)
conductor  |    at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547)
conductor  |    at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602)
conductor  |    at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
conductor  |    at java.base/java.net.Socket.connect(Socket.java:633)
conductor  |    at org.postgresql.core.PGStream.createSocket(PGStream.java:231)
conductor  |    at org.postgresql.core.PGStream.<init>(PGStream.java:95)
conductor  |    at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:98)
conductor  |    at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:213)
conductor  |    ... 149 common frames omitted

Second error:

conductor  | 2024-01-10 06:56:21,791 WARN  [main] org.springframework.context.support.AbstractApplicationContext: Exception encountered during context initialization - cancelling refresh attempt: org.spri
ngframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'orkesWorkflowExecutor' defined in URL [jar:file:/app/libs/server.jar!/BOOT-INF/classes!/com/netflix/conductor/core/
execution/OrkesWorkflowExecutor.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creati
ng bean with name 'deciderService' defined in URL [jar:file:/app/libs/server.jar!/BOOT-INF/lib/conductor-core-3.15.0.jar!/com/netflix/conductor/core/execution/DeciderService.class]: Unsatisfied dependency
 expressed through constructor parameter 4; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'systemTaskRegistry' defined in URL [jar:fil
e:/app/libs/server.jar!/BOOT-INF/lib/conductor-core-3.15.0.jar!/com/netflix/conductor/core/execution/tasks/SystemTaskRegistry.class]: Unsatisfied dependency expressed through constructor parameter 0; nest
ed exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'START_WORKFLOW' defined in URL [jar:file:/app/libs/server.jar!/BOOT-INF/lib/conductor-core-
3.15.0.jar!/com/netflix/conductor/core/execution/tasks/StartWorkflow.class]: Unsatisfied dependency expressed through constructor parameter 2; nested exception is org.springframework.beans.factory.Unsatis
fiedDependencyException: Error creating bean with name 'startWorkflowOperation' defined in URL [jar:file:/app/libs/server.jar!/BOOT-INF/lib/conductor-core-3.15.0.jar!/com/netflix/conductor/core/operation/
StartWorkflowOperation.class]: Unsatisfied dependency expressed through constructor parameter 3; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean w
ith name 'executionDAOFacade' defined in URL [jar:file:/app/libs/server.jar!/BOOT-INF/lib/conductor-core-3.15.0.jar!/com/netflix/conductor/core/dal/ExecutionDAOFacade.class]: Unsatisfied dependency expres
sed through constructor parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'getExecutionDAO' defined in class path resource [i
o/orkes/conductor/dao/postgres/archive/PostgresArchiveDAOConfiguration.class]: Unsatisfied dependency expressed through method 'getExecutionDAO' parameter 0; nested exception is org.springframework.beans.
factory.BeanCreationException: Error creating bean with name 'flyway' defined in class path resource [io/orkes/conductor/dao/postgres/archive/PostgresArchiveDAOConfiguration.class]: Invocation of init met
hod failed; nested exception is org.flywaydb.core.internal.exception.FlywaySqlException:
conductor  | Unable to obtain connection from database: Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.
conductor  | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
conductor  | SQL State  : 08001
conductor  | Error Code : 0
conductor  | Message    : Connection to localhost:5432 refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections.

It seems that although it is not specified, it tries to connect to postgresql both to do the migration with flyway and to be used as persistence, no?
If I compile 3.15.0 or 3.16.0 it works, so I think it is a bug in the uploaded image.

@manan164
Copy link
Contributor

Hi @JCHacking , Can you please rebuild the image? I see you have specified the property conductor.db.type=redis_standalone so ideally conductor don't need postgres.

@JCHacking
Copy link
Contributor Author

If I generate conductor:server with the dockerfile from this repository with the tag v3.15.0 it works fine.

@JCHacking
Copy link
Contributor Author

Any news on this? Do you know what the problem is?
I would like to be able to use the image in my systems so I don't have to generate my own.

@JCHacking
Copy link
Contributor Author

JCHacking commented Mar 12, 2024

Any news about this? Will the official docker repository be maintained or will it be abandoned? @manan164

ivakoleva pushed a commit to ivakoleva/conductor-oss that referenced this issue Sep 16, 2024
Merge in DPA/mirror.conductor from feature/INTEL-56874-update-readme to develop-main

Squashed commit of the following:

commit 682697024edfb289ec53488521a6d45e0ae96707
Author: manishk <[email protected]>
Date:   Thu Apr 4 18:15:10 2024 -0400

    INTEL-56874 INTEL-56874 Fixed issues in server property file that was caused during rebase with remote.

commit c703ad5490fd51fed3b702226e42bb7ff58c3581
Author: Boyan Georgiev <[email protected]>
Date:   Wed Mar 27 07:09:50 2024 -0400

    INTEL-56874 Pull request conductor-oss#58: Bugfix/FS-5171 setting proper threadpooltaskscheduler pool size

    Merge in DPA/mirror.conductor from bugfix/FS-5171-setting-proper-threadpooltaskscheduler-pool-size to develop

    Squashed commit of the following:

    commit 3217bd0d8ca942928db134ff723ae0ee2d6a22ea
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 15:52:55 2024 +0200

        [FS-5171] Fixing properties wiring

    commit 7372cad21a345d81b6b9da75ee49df388a4739ad
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 13:02:32 2024 +0200

        [FS-5171] Fixing @value template

    commit e6e4b21c8e79b50242fe31ed34e237a60e89fafe
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 12:49:08 2024 +0200

        [FS-5171] Setting threadPoolTaskScheduler pool size to be the same as sweeper-thread-count

    commit 96d9c7ef6aa56c7541f172040a0d19400a9ac608
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 11:56:04 2024 +0200

        [FS-5171] Setting threadPoolTaskScheduler pool size to be the same as sweeper-thread-count

    Merge in DPA/mirror.conductor from bugfix/FS-5171-setting-proper-threadpooltaskscheduler-pool-size to develop

    Squashed commit of the following:

    commit 3217bd0d8ca942928db134ff723ae0ee2d6a22ea
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 15:52:55 2024 +0200

        [FS-5171] Fixing properties wiring

    commit 7372cad21a345d81b6b9da75ee49df388a4739ad
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 13:02:32 2024 +0200

        [FS-5171] Fixing @value template

    commit e6e4b21c8e79b50242fe31ed34e237a60e89fafe
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 12:49:08 2024 +0200

        [FS-5171] Setting threadPoolTaskScheduler pool size to be the same as sweeper-thread-count

    commit 96d9c7ef6aa56c7541f172040a0d19400a9ac608
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Mar 26 11:56:04 2024 +0200

        [FS-5171] Setting threadPoolTaskScheduler pool size to be the same as sweeper-thread-count

commit 25893b26dd26465e5b86fba3ca064979e3723082
Author: manishk <[email protected]>
Date:   Wed Apr 3 16:21:19 2024 -0400

    INTEL-56874 INTEL-56874 Upgrade Jedis version from 3.6.0 to 3.8.0

commit b4650e75a31066759b7d826e03081f8809ee6d4c
Author: Manish Kumar <[email protected]>
Date:   Mon Feb 26 19:03:18 2024 -0500

    INTEL-56874 INTEL-56874 Bring develop in sync with remote. Also fix failing tests.

commit 1560600a710888fcad5ac0d3b35151a6f855f980
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Mon Dec 11 13:08:56 2023 -0500

    Pull request conductor-oss#43: Task/FS-4857 drop es6 persistence module

    Merge in DPA/mirror.conductor from task/FS-4857-1 to develop

    Squashed commit of the following:

    commit bf0a2bf7fec5b22b4ed2ef5e77a3e0067fff2cda
    Merge: a312cbee 2df8245f
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Thu Dec 7 12:46:04 2023 -0600

        FS-4857 fix merge conflicts

    commit a312cbee9571133f262b8f15346d629b419e6fe8
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Dec 6 14:48:21 2023 -0600

        FS-4857 remove unnecesary es enablement

    commit 5a7227f35c4f34efe77f149b8c999ea4a7bd8da4
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Dec 6 14:38:05 2023 -0600

        FS-4857 drop es6 module

commit 839109ca2be7b912ad6b6ff1845be9208addb10b
Author: Scott Carter <[email protected]>
Date:   Wed Dec 6 20:34:23 2023 -0500

    Pull request conductor-oss#42: INTEL-54579: Resolve open CVE's in conductor.

    Merge in DPA/mirror.conductor from task/INTEL-54579-conductor-vulns to develop

    Squashed commit of the following:

    commit 8fa5d62462cc97d89723635badf8ec8378306a35
    Author: Scott Carter <[email protected]>
    Date:   Wed Dec 6 20:15:32 2023 -0500

        INTEL-54579 Upgrade the version of grpc-netty to work with the new Spring boot version.

    commit a8f277a82f5578117738820c7c79055c705816ee
    Author: Scott Carter <[email protected]>
    Date:   Wed Dec 6 12:26:41 2023 -0500

        INTEL-54579 Resolve open CVE's in conductor.

commit a75502ec739d278d5d29c2d90643bff58cc3b960
Author: Borislav Kavalov <[email protected]>
Date:   Tue Dec 5 02:18:02 2023 -0500

    INTEL-56874 Pull request conductor-oss#41: FS-4713 include exception in log message when failed to write to SQS

    Merge in DPA/mirror.conductor from bugfix/FS-4713-include-exn-in-log-message to develop

    Squashed commit of the following:

    commit b21b1d84d189db1287f9b9d67775c8271a0d0a96
    Author: bkavalov <[email protected]>
    Date:   Mon Dec 4 15:50:10 2023 +0200

        FS-4713 include exception in log message when failed to write to SQS

    Merge in DPA/mirror.conductor from bugfix/FS-4713-include-exn-in-log-message to develop

    Squashed commit of the following:

    commit b21b1d84d189db1287f9b9d67775c8271a0d0a96
    Author: bkavalov <[email protected]>
    Date:   Mon Dec 4 15:50:10 2023 +0200

        FS-4713 include exception in log message when failed to write to SQS

commit 9c778e8bdcdd7f07a617b016679d70a6f386a557
Author: Parag Kadu <[email protected]>
Date:   Thu Nov 30 11:45:58 2023 -0500

    INTEL-56874 Pull request conductor-oss#39: INTEL-54475 update jedis and redisson client version

    Merge in DPA/mirror.conductor from feature/INTEL-54475-jedis-version to develop

    Squashed commit of the following:

    commit 6b3661f61dadafa62f6a87a45f8ebd3e9ac4e6b8
    Merge: 4be61b6f 77b976e6
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 21:58:16 2023 +0530

        Merge branch 'develop' into feature/INTEL-54475-jedis-version

    commit 4be61b6f4388697f3ac1053d3a2121b5fa66440a
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 21:57:44 2023 +0530

        INTEL-54475 jedis default so timeout

    commit c4ce91f1a4e2aa526a07a0f66ba146fad52dcd05
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 11:24:51 2023 +0530

        INTEL-54475 nits

    commit d0324a72452a2862678021790cb06bb8b00a8bd6
    Author: Parag Kadu <[email protected]>
    Date:   Wed Nov 29 22:47:43 2023 +0530

        INTEL-54475 update redis classes as per jedis version update

    commit 0de7a0b03305e5a6402984ddf816375f2a8730c7
    Author: Scott Carter <[email protected]>
    Date:   Wed Nov 29 10:15:11 2023 -0500

        INTEL-54475 Update the lock files.

    commit 76592efb551b862e36379e0fc0a80a833b7305e4
    Author: Parag Kadu <[email protected]>
    Date:   Wed Nov 29 15:21:14 2023 +0530

        INTEL-54475 update jedis and redisson client version

    Merge in DPA/mirror.conductor from feature/INTEL-54475-jedis-version to develop

    Squashed commit of the following:

    commit 6b3661f61dadafa62f6a87a45f8ebd3e9ac4e6b8
    Merge: 4be61b6f 77b976e6
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 21:58:16 2023 +0530

        Merge branch 'develop' into feature/INTEL-54475-jedis-version

    commit 4be61b6f4388697f3ac1053d3a2121b5fa66440a
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 21:57:44 2023 +0530

        INTEL-54475 jedis default so timeout

    commit c4ce91f1a4e2aa526a07a0f66ba146fad52dcd05
    Author: Parag Kadu <[email protected]>
    Date:   Thu Nov 30 11:24:51 2023 +0530

        INTEL-54475 nits

    commit d0324a72452a2862678021790cb06bb8b00a8bd6
    Author: Parag Kadu <[email protected]>
    Date:   Wed Nov 29 22:47:43 2023 +0530

        INTEL-54475 update redis classes as per jedis version update

    commit 0de7a0b03305e5a6402984ddf816375f2a8730c7
    Author: Scott Carter <[email protected]>
    Date:   Wed Nov 29 10:15:11 2023 -0500

        INTEL-54475 Update the lock files.

    commit 76592efb551b862e36379e0fc0a80a833b7305e4
    Author: Parag Kadu <[email protected]>
    Date:   Wed Nov 29 15:21:14 2023 +0530

        INTEL-54475 update jedis and redisson client version

commit 38de968dbf855c9c72341178ead2f1bd6714b6e8
Author: Boyan Georgiev <[email protected]>
Date:   Wed Nov 29 11:03:09 2023 -0500

    INTEL-56874 Pull request conductor-oss#36: [FS-4750] Adding jsonpath evaluator test cases for ISNULL and ISNOTNULL

    Merge in DPA/mirror.conductor from bugfix/FS-4750-adding-jsonpath-evaluator-test-cases to develop

    Squashed commit of the following:

    commit ecb83affd2d22dee847199dcf354f3a635608cb1
    Merge: 6935bc93 25c396f7
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Nov 29 17:44:39 2023 +0200

        [FS-4750] Merge branch 'develop' into bugfix/FS-4750-adding-jsonpath-evaluator-test-cases

    commit 6935bc936ad7a6e32229ca5a74bd367995696eb6
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 17:13:51 2023 +0200

        [FS-4750] Re-adding removed test by mistake

    commit 18e902f2ff5e4ee7d9fc3d40e8ebe8a82ed4947f
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 14:25:01 2023 +0200

        [FS-4750] Running spottlessApply

    commit d44d5a09b45aa0ef990ecb911050b2ccdf4c5c2e
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 14:14:01 2023 +0200

        [FS-4750] Adding jsonpath evaluator test cases for ISNULL and ISNOTNULL

    Merge in DPA/mirror.conductor from bugfix/FS-4750-adding-jsonpath-evaluator-test-cases to develop

    Squashed commit of the following:

    commit ecb83affd2d22dee847199dcf354f3a635608cb1
    Merge: 6935bc93 25c396f7
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Nov 29 17:44:39 2023 +0200

        [FS-4750] Merge branch 'develop' into bugfix/FS-4750-adding-jsonpath-evaluator-test-cases

    commit 6935bc936ad7a6e32229ca5a74bd367995696eb6
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 17:13:51 2023 +0200

        [FS-4750] Re-adding removed test by mistake

    commit 18e902f2ff5e4ee7d9fc3d40e8ebe8a82ed4947f
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 14:25:01 2023 +0200

        [FS-4750] Running spottlessApply

    commit d44d5a09b45aa0ef990ecb911050b2ccdf4c5c2e
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Nov 14 14:14:01 2023 +0200

        [FS-4750] Adding jsonpath evaluator test cases for ISNULL and ISNOTNULL

commit a919d03beb8a555873f86562e6cee96a39adf7f3
Author: Scott Carter <[email protected]>
Date:   Mon Oct 23 18:22:07 2023 -0400

    INTEL-56874 Pull request conductor-oss#35: FS-4578 Change to make the number of sweeper threads tunable.

    Merge in DPA/mirror.conductor from task/FS-4578-make-sweeper-threads-tuneable to develop

    Squashed commit of the following:

    commit dd15132e9f70d03c51262c5c2282ef4af961975c
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 16:15:15 2023 -0400

        FS-4578 Revert change that wasn't needed.

    commit 196fa0ec0ccc6485aaf7051272d67cc816ff1d47
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 13:37:18 2023 -0400

        FS-4578 Revert unintended change.

    commit ad1dd62c287af816293cdd0d6e193b7ec686307a
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:59:52 2023 -0400

        FS-4578 Setting a value that will cause conductor to default to its original behavior.

    commit 3889f8e875179d36662a45f45aaf5ce32d5c20f4
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:24:17 2023 -0400

        FS-4578 Spotless apply

    commit 003885bd5c83cb7d51fc760b7f74ec0eda7ef50e
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:09:55 2023 -0400

        FS-4578 Remove the default value.

    commit 3ec95965faedd600a5f02927590b81c0b6bdeea2
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:08:49 2023 -0400

        FS-4578 Review feedback from Manu.

    commit c7d7b448cf9455e5f6da51a3d5800ef08719e948
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 09:20:48 2023 -0400

        FS-4578 Change to make the number of sweeper threads tunable.

    Merge in DPA/mirror.conductor from task/FS-4578-make-sweeper-threads-tuneable to develop

    Squashed commit of the following:

    commit dd15132e9f70d03c51262c5c2282ef4af961975c
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 16:15:15 2023 -0400

        FS-4578 Revert change that wasn't needed.

    commit 196fa0ec0ccc6485aaf7051272d67cc816ff1d47
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 13:37:18 2023 -0400

        FS-4578 Revert unintended change.

    commit ad1dd62c287af816293cdd0d6e193b7ec686307a
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:59:52 2023 -0400

        FS-4578 Setting a value that will cause conductor to default to its original behavior.

    commit 3889f8e875179d36662a45f45aaf5ce32d5c20f4
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:24:17 2023 -0400

        FS-4578 Spotless apply

    commit 003885bd5c83cb7d51fc760b7f74ec0eda7ef50e
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:09:55 2023 -0400

        FS-4578 Remove the default value.

    commit 3ec95965faedd600a5f02927590b81c0b6bdeea2
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 10:08:49 2023 -0400

        FS-4578 Review feedback from Manu.

    commit c7d7b448cf9455e5f6da51a3d5800ef08719e948
    Author: Scott Carter <[email protected]>
    Date:   Mon Oct 23 09:20:48 2023 -0400

        FS-4578 Change to make the number of sweeper threads tunable.

commit ffdd3d5aa23f96202f730cc8a2aa913970b3384e
Author: Scott Carter <[email protected]>
Date:   Fri Oct 13 14:30:47 2023 -0400

    Pull request conductor-oss#34: INTEL-53170: Updates to resolve CVE with tomcat-embed-core.

    Merge in DPA/mirror.conductor from task/INTEL-53170-tomcat-embed-core-cve to develop

    Squashed commit of the following:

    commit 2b9488a324df207af5164107f43b7dac1f3e7423
    Author: Scott Carter <[email protected]>
    Date:   Fri Oct 13 14:00:16 2023 -0400

        INTEL-53170 Finally fixed the build.

    commit e981c3d0c9b8c9eef001fa83e2c285ff66234822
    Author: Scott Carter <[email protected]>
    Date:   Fri Oct 13 12:19:08 2023 -0400

        INTEL-53170 Fixed json path dependency issue.

    commit acc69c795f648fd701d672e38ada32898db7b37f
    Author: Scott Carter <[email protected]>
    Date:   Thu Oct 12 21:54:41 2023 -0400

        INTEL-53170 Fixed some of the build failures.

    commit 2b9584189bbb8135020a6941b02a9a70e0409c6b
    Author: Scott Carter <[email protected]>
    Date:   Thu Oct 12 11:58:43 2023 -0400

        INTEL-53170: Updates to resolve CVE with tomcat-embed-core.

commit 0e80bf4498057ecb14368f5d25873769345e3729
Author: Ivo Petkov <[email protected]>
Date:   Wed Sep 27 15:14:10 2023 -0400

    INTEL-56874 Pull request conductor-oss#32: [FS-4266] Enable communication with Redis through SSL/TLS

    Merge in DPA/mirror.conductor from bugfix/FS-4266-mirror.conductor-enable-communication-with-redis-through-ssl-tls to develop

    Squashed commit of the following:

    commit 4988a3d2c3ccd13de01b4b428eea59d660e75a70
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 27 11:14:40 2023 -0400

        [FS-4266] - No need of client name, use optional semantics for reading password

    commit e245bc0f78bdbe286fae74215cc23665cd18b28d
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 17:26:20 2023 +0300

        [FS-4266] Cleanup and have only one ssl property

    commit 47df1afd432c9570596d7a4b60669f0119a83d5e
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 15:40:14 2023 +0300

        Revert "[FS-4266] RedisClusterConfiguration modified to diagnose (throw away code) redis cluster connection towards slots and config"

        This reverts commit 26ac880f8f868bfc438af615adde92cc9895db25.

    commit 9516583df57ae4a30e5544743813926feac53d96
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 15:39:53 2023 +0300

        Revert "[FS-4266] Test loadScript and logging"

        This reverts commit 283b9f9b233610925c56987753028612290947d1.

    commit 4888df088b193b13a33f43419d1bc498ed5570b8
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 14:58:53 2023 +0300

        [FS-4266] added conductor.redis.ssl property for conductor's orkes queue configuraiton

    commit 22bb6d8492dd63ec1cf40a3c1015cd38adcfa303
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 13:48:29 2023 +0300

        [FS-4266] Test loadScript and logging

    commit ba285fb3bef7e3c9edede56e8a12799ca360bf56
    Author: Manu Nazareth <[email protected]>
    Date:   Tue Sep 26 17:04:31 2023 -0400

        [FS-4266] RedisClusterConfiguration modified to diagnose (throw away code) redis cluster connection towards slots and config

    commit 51841aa36ea2df274759a6bb595b6147e81f2ad3
    Author: Ivo Petkov <[email protected]>
    Date:   Thu Sep 21 17:00:42 2023 +0300

        [FS-4266] fix violations

        ./gradlew :conductor-redis-persistence:spotlessApply

    commit 9ea06665563c15ae8ff6bddcf0f109b859366ffd
    Author: Ivo Petkov <[email protected]>
    Date:   Thu Sep 21 16:44:16 2023 +0300

        [FS-4266] additional logging

    commit 8b888e83e7aa2ff92a18ee3106ad1ff3993e30ee
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 18:28:44 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit 89ca6517cc397a25a236d518271d285d8dfd88b1
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 17:34:47 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit 8187b74e16ffd92f71bb749841fe49c17fa89859
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 15:34:21 2023 -0400

        Revert "[FS-4266] RedisClusterConfiguration to use SSL when configured to do so."

        This reverts commit bd7b5b0a2bada3484163c2a5f8c8baf8c90b782f.

    commit 507db696b4d29b837b6802462f14cf18659664d2
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 15:31:08 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit b610f8a8305cbe68a04151d183a82007433a4d86
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 18:18:17 2023 +0300

        [FS-4266] copy/paste typo

    commit 46ac0a979b6a6c47fbaaa37260edda8f9c248ba8
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:56:30 2023 +0300

        [FS-4266] having the defauld value in the properties itself.

    commit fd7e0d0f0d4d93801d5eafeea288179a62184731
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:41:05 2023 +0300

        [FS-4266] Use ignoreInvalidFields = true, so we have default value for a boolean

    commit 315dd37f635e6a9db06393ad7d8e018e6758102b
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:19:17 2023 +0300

        [FS-4266] Use already existing REDIS_USE_SSL property
        Actually, there is already property for this - REDIS_USE_SSL

    commit f33c8ebf0902f3dd2dbc1832c37a07f336ff8378
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:06:12 2023 +0300

        [FS-4266] Enable communication with Redis through SSL/TLS

        This is basicly porting an outdated Netflix/conductor#1441 PR in our mirror.
        We need ops change for REDIS_HOST_USE_SSL

    Merge in DPA/mirror.conductor from bugfix/FS-4266-mirror.conductor-enable-communication-with-redis-through-ssl-tls to develop

    Squashed commit of the following:

    commit 4988a3d2c3ccd13de01b4b428eea59d660e75a70
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 27 11:14:40 2023 -0400

        [FS-4266] - No need of client name, use optional semantics for reading password

    commit e245bc0f78bdbe286fae74215cc23665cd18b28d
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 17:26:20 2023 +0300

        [FS-4266] Cleanup and have only one ssl property

    commit 47df1afd432c9570596d7a4b60669f0119a83d5e
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 15:40:14 2023 +0300

        Revert "[FS-4266] RedisClusterConfiguration modified to diagnose (throw away code) redis cluster connection towards slots and config"

        This reverts commit 26ac880f8f868bfc438af615adde92cc9895db25.

    commit 9516583df57ae4a30e5544743813926feac53d96
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 15:39:53 2023 +0300

        Revert "[FS-4266] Test loadScript and logging"

        This reverts commit 283b9f9b233610925c56987753028612290947d1.

    commit 4888df088b193b13a33f43419d1bc498ed5570b8
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 14:58:53 2023 +0300

        [FS-4266] added conductor.redis.ssl property for conductor's orkes queue configuraiton

    commit 22bb6d8492dd63ec1cf40a3c1015cd38adcfa303
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 27 13:48:29 2023 +0300

        [FS-4266] Test loadScript and logging

    commit ba285fb3bef7e3c9edede56e8a12799ca360bf56
    Author: Manu Nazareth <[email protected]>
    Date:   Tue Sep 26 17:04:31 2023 -0400

        [FS-4266] RedisClusterConfiguration modified to diagnose (throw away code) redis cluster connection towards slots and config

    commit 51841aa36ea2df274759a6bb595b6147e81f2ad3
    Author: Ivo Petkov <[email protected]>
    Date:   Thu Sep 21 17:00:42 2023 +0300

        [FS-4266] fix violations

        ./gradlew :conductor-redis-persistence:spotlessApply

    commit 9ea06665563c15ae8ff6bddcf0f109b859366ffd
    Author: Ivo Petkov <[email protected]>
    Date:   Thu Sep 21 16:44:16 2023 +0300

        [FS-4266] additional logging

    commit 8b888e83e7aa2ff92a18ee3106ad1ff3993e30ee
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 18:28:44 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit 89ca6517cc397a25a236d518271d285d8dfd88b1
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 17:34:47 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit 8187b74e16ffd92f71bb749841fe49c17fa89859
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 15:34:21 2023 -0400

        Revert "[FS-4266] RedisClusterConfiguration to use SSL when configured to do so."

        This reverts commit bd7b5b0a2bada3484163c2a5f8c8baf8c90b782f.

    commit 507db696b4d29b837b6802462f14cf18659664d2
    Author: Manu Nazareth <[email protected]>
    Date:   Wed Sep 20 15:31:08 2023 -0400

        [FS-4266] RedisClusterConfiguration to use SSL when configured to do so.

    commit b610f8a8305cbe68a04151d183a82007433a4d86
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 18:18:17 2023 +0300

        [FS-4266] copy/paste typo

    commit 46ac0a979b6a6c47fbaaa37260edda8f9c248ba8
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:56:30 2023 +0300

        [FS-4266] having the defauld value in the properties itself.

    commit fd7e0d0f0d4d93801d5eafeea288179a62184731
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:41:05 2023 +0300

        [FS-4266] Use ignoreInvalidFields = true, so we have default value for a boolean

    commit 315dd37f635e6a9db06393ad7d8e018e6758102b
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:19:17 2023 +0300

        [FS-4266] Use already existing REDIS_USE_SSL property
        Actually, there is already property for this - REDIS_USE_SSL

    commit f33c8ebf0902f3dd2dbc1832c37a07f336ff8378
    Author: Ivo Petkov <[email protected]>
    Date:   Wed Sep 20 17:06:12 2023 +0300

        [FS-4266] Enable communication with Redis through SSL/TLS

        This is basicly porting an outdated Netflix/conductor#1441 PR in our mirror.
        We need ops change for REDIS_HOST_USE_SSL

commit c76c0a630cfcdff9a9ace9f7eab586f028011d27
Author: Borislav Kavalov <[email protected]>
Date:   Wed Sep 20 20:02:13 2023 -0400

    INTEL-56874 Pull request conductor-oss#33: FS-4267 remove unnecessary logging from ES and workflow archiving

    Merge in DPA/mirror.conductor from task/FS-4267-remove-noisy-warn-logs to develop

    Squashed commit of the following:

    commit 6e100e3a78d3a8e4193c7d55912d0916004d7ac6
    Merge: 8190983a 3f25bc32
    Author: Scott Carter <[email protected]>
    Date:   Wed Sep 20 16:39:23 2023 -0400

        Merge remote-tracking branch 'origin/develop' into task/FS-4267-remove-noisy-warn-logs

    commit 8190983a8b771ced1a4ec983fdeda34ef73f83ac
    Author: Scott Carter <[email protected]>
    Date:   Wed Sep 20 15:51:29 2023 -0400

        FS-4267 Move the log supression to the main log4j.xml file.

    commit 3155b5257786b72da63757a55190276e314dfc13
    Author: bkavalov <[email protected]>
    Date:   Wed Sep 20 21:32:33 2023 +0300

        FS-4267 update comment

    commit 77b7592371796794ef44baf228782a1b9f318d61
    Author: bkavalov <[email protected]>
    Date:   Wed Sep 20 18:27:08 2023 +0300

        FS-4267 remove unnecessary logging from ES and workflow archiving

    Merge in DPA/mirror.conductor from task/FS-4267-remove-noisy-warn-logs to develop

    Squashed commit of the following:

    commit 6e100e3a78d3a8e4193c7d55912d0916004d7ac6
    Merge: 8190983a 3f25bc32
    Author: Scott Carter <[email protected]>
    Date:   Wed Sep 20 16:39:23 2023 -0400

        Merge remote-tracking branch 'origin/develop' into task/FS-4267-remove-noisy-warn-logs

    commit 8190983a8b771ced1a4ec983fdeda34ef73f83ac
    Author: Scott Carter <[email protected]>
    Date:   Wed Sep 20 15:51:29 2023 -0400

        FS-4267 Move the log supression to the main log4j.xml file.

    commit 3155b5257786b72da63757a55190276e314dfc13
    Author: bkavalov <[email protected]>
    Date:   Wed Sep 20 21:32:33 2023 +0300

        FS-4267 update comment

    commit 77b7592371796794ef44baf228782a1b9f318d61
    Author: bkavalov <[email protected]>
    Date:   Wed Sep 20 18:27:08 2023 +0300

        FS-4267 remove unnecessary logging from ES and workflow archiving

commit 57c57e08039a9654a6bb60ad36b2cf7ef760b695
Author: Scott Carter <[email protected]>
Date:   Wed Sep 20 11:27:08 2023 -0400

    Pull request conductor-oss#31: INTEL-52577 Excluding dependency vulnerable to CVE-2023-42503

    Merge in DPA/mirror.conductor from task/INTEL-52577-exclude-unused-vulnerable-dependency to develop

    Squashed commit of the following:

    commit e1c4b4df8535c5d29664f0e7cf740558389d5e72
    Author: Scott Carter <[email protected]>
    Date:   Wed Sep 20 09:20:16 2023 -0400

        INTEL-52577 Force the commons-compress version to 1.24.0

    commit 2b04739a4dc0ebf01e325be99a61d596ddfe64bc
    Author: Scott Carter <[email protected]>
    Date:   Tue Sep 19 18:26:10 2023 -0400

        INTEL-52577 Excluding dependency vulnerable to CVE-2023-42503

commit 426a0277043d6efe92eb6b0b7258897401f13013
Author: Boyan Georgiev <[email protected]>
Date:   Fri Sep 1 07:14:07 2023 -0400

    INTEL-56874 Pull request conductor-oss#19: Task/FS-3394 add jsonpath evaluator

    Merge in DPA/mirror.conductor from task/FS-3394-add-jsonpath-evaluator to develop

    Squashed commit of the following:

    commit dc8f3a8fcbb1c7df4ec933d58906c7c6c711eafa
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 18:44:33 2023 +0300

        FS-3394 fix whitespaces

    commit ab673d176c84e47fd38b3f0a22bfc45115a31228
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 18:43:14 2023 +0300

        FS-3394 revert Switch class changes from sdk module

    commit 18d61ed71579d5b5a9c1517a8f698521e3b05715
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 17:16:44 2023 +0300

        FS-3394 revert dependency lock change in core module for conductor-common

    commit 60a765a07c6b7b3f079997c2ee312b0388df365e
    Merge: fd0d5fce 3d748368
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 17:10:13 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    commit fd0d5fceb6d4133548141ec05089aad2ff808f60
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Aug 29 18:58:19 2023 +0300

        FS-3394 applying new jayway jsonpath version to all modules

    commit 0406dce6464e5ba9c94ce8d76aa6e2d001806134
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Aug 29 18:54:43 2023 +0300

        Revert "FS-3394 fix dependencies lock"

        This reverts commit dce6be3f5c1adf3ec6c431c255cadb59ac966f77.

    commit 4f3a6ff87d13eceee42709e467f8c3314521ac53
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 17:21:45 2023 +0300

        FS-3394 adding test for Map<String,List<>>

    commit 1b7de687a9191d2d2e1e0e671401a4d9ecaa3fbd
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 17:10:34 2023 +0300

        FS-3394 refactor tests to use method source

    commit 740ceb78dda143d262b974de64533cd917662050
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 16:01:08 2023 +0300

        FS-3394 apply fixes to violations

    commit ada3b1e6c0bf4ccfbe9f620aa9b0ee6409d8ac65
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 15:25:49 2023 +0300

        FS-3394 adding test for nested map

    commit f61c0c23f6bc32b42cf84c70bfdfd5baaac64093
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Jul 19 17:19:21 2023 +0300

        FS-3394 remove unused imports

    commit 127753d2a2f5d29260bd542144c27c27384aecb2
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Jul 19 17:12:40 2023 +0300

        FS-3394 Applying pr suggestions and removing redundant parts

    commit ff3992382e33793d612c379197f487f636536cf1
    Merge: ff8ce7eb d00c18e5
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Jul 18 18:57:25 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    commit ff8ce7eb46ad444f990867964590bc732cfe47f8
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:36:57 2023 +0300

        FS-3394 fix violationsgsgsgs

    commit afa456ea720f2010e41d296f00ae7a0a503e2957
    Merge: 5b02de8a dce6be3f
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:28:31 2023 +0300

        Merge branch 'task/FS-3394-updated-dependencies-lock' into task/FS-3394-add-jsonpath-evaluator

    commit 5b02de8a3a1982db4a640eaf20a4dc0fdf3b1b2f
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:28:13 2023 +0300

        FS-3394 adding jsonpath evaluator to java sdk

    commit dce6be3f5c1adf3ec6c431c255cadb59ac966f77
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 18:55:24 2023 +0300

        FS-3394 fix dependencies lock

    commit d5e6fc3228c3f038cf6b263cc2e7bc0f84f61e81
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 17:20:15 2023 +0300

        FS-3394 fix violations

    commit 2a0c64f49bc3f770f331b8f1a6f7f6da1595ca22
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 17:10:42 2023 +0300

        FS-3394 updating to internal jsonpath mirrored dependency

    commit 8527a1c7c94370dfb1e3869cec83f6d13053b226
    Merge: f3487275 273c8ff2
    Author: Boyan Georgiev <[email protected]>
    Date:   Mon Jul 3 18:18:07 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    ... and 6 more commits

    Merge in DPA/mirror.conductor from task/FS-3394-add-jsonpath-evaluator to develop

    Squashed commit of the following:

    commit dc8f3a8fcbb1c7df4ec933d58906c7c6c711eafa
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 18:44:33 2023 +0300

        FS-3394 fix whitespaces

    commit ab673d176c84e47fd38b3f0a22bfc45115a31228
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 18:43:14 2023 +0300

        FS-3394 revert Switch class changes from sdk module

    commit 18d61ed71579d5b5a9c1517a8f698521e3b05715
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 17:16:44 2023 +0300

        FS-3394 revert dependency lock change in core module for conductor-common

    commit 60a765a07c6b7b3f079997c2ee312b0388df365e
    Merge: fd0d5fce 3d748368
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Aug 31 17:10:13 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    commit fd0d5fceb6d4133548141ec05089aad2ff808f60
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Aug 29 18:58:19 2023 +0300

        FS-3394 applying new jayway jsonpath version to all modules

    commit 0406dce6464e5ba9c94ce8d76aa6e2d001806134
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Aug 29 18:54:43 2023 +0300

        Revert "FS-3394 fix dependencies lock"

        This reverts commit dce6be3f5c1adf3ec6c431c255cadb59ac966f77.

    commit 4f3a6ff87d13eceee42709e467f8c3314521ac53
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 17:21:45 2023 +0300

        FS-3394 adding test for Map<String,List<>>

    commit 1b7de687a9191d2d2e1e0e671401a4d9ecaa3fbd
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 17:10:34 2023 +0300

        FS-3394 refactor tests to use method source

    commit 740ceb78dda143d262b974de64533cd917662050
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 16:01:08 2023 +0300

        FS-3394 apply fixes to violations

    commit ada3b1e6c0bf4ccfbe9f620aa9b0ee6409d8ac65
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 20 15:25:49 2023 +0300

        FS-3394 adding test for nested map

    commit f61c0c23f6bc32b42cf84c70bfdfd5baaac64093
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Jul 19 17:19:21 2023 +0300

        FS-3394 remove unused imports

    commit 127753d2a2f5d29260bd542144c27c27384aecb2
    Author: Boyan Georgiev <[email protected]>
    Date:   Wed Jul 19 17:12:40 2023 +0300

        FS-3394 Applying pr suggestions and removing redundant parts

    commit ff3992382e33793d612c379197f487f636536cf1
    Merge: ff8ce7eb d00c18e5
    Author: Boyan Georgiev <[email protected]>
    Date:   Tue Jul 18 18:57:25 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    commit ff8ce7eb46ad444f990867964590bc732cfe47f8
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:36:57 2023 +0300

        FS-3394 fix violationsgsgsgs

    commit afa456ea720f2010e41d296f00ae7a0a503e2957
    Merge: 5b02de8a dce6be3f
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:28:31 2023 +0300

        Merge branch 'task/FS-3394-updated-dependencies-lock' into task/FS-3394-add-jsonpath-evaluator

    commit 5b02de8a3a1982db4a640eaf20a4dc0fdf3b1b2f
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 19:28:13 2023 +0300

        FS-3394 adding jsonpath evaluator to java sdk

    commit dce6be3f5c1adf3ec6c431c255cadb59ac966f77
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 18:55:24 2023 +0300

        FS-3394 fix dependencies lock

    commit d5e6fc3228c3f038cf6b263cc2e7bc0f84f61e81
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 17:20:15 2023 +0300

        FS-3394 fix violations

    commit 2a0c64f49bc3f770f331b8f1a6f7f6da1595ca22
    Author: Boyan Georgiev <[email protected]>
    Date:   Thu Jul 6 17:10:42 2023 +0300

        FS-3394 updating to internal jsonpath mirrored dependency

    commit 8527a1c7c94370dfb1e3869cec83f6d13053b226
    Merge: f3487275 273c8ff2
    Author: Boyan Georgiev <[email protected]>
    Date:   Mon Jul 3 18:18:07 2023 +0300

        Merge branch 'develop' into task/FS-3394-add-jsonpath-evaluator

    ... and 6 more commits

commit d4707a0b34fb98d0943f7f17bae0a9239013e4f2
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Wed Aug 30 11:14:38 2023 -0400

    Pull request conductor-oss#29: INTEL-51864 Update vulnerable dependencies

    Merge in DPA/mirror.conductor from task/INTEL-51864-pallavi-2 to develop

    Squashed commit of the following:

    commit 41c89dc0968bdb5d9aff18be863dcca52e42bfa1
    Merge: 161d1a69 06ab0001
    Author: Scott Carter <[email protected]>
    Date:   Wed Aug 30 10:00:21 2023 -0400

        Merge remote-tracking branch 'origin/develop' into task/INTEL-51864-pallavi-2

    commit 161d1a691a71be91ae5a02a08cbefb3124bb7506
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Mon Aug 28 17:36:20 2023 -0500

        INTEL-51864 add mavencentral()

    commit 1dfa3267284f4c170e6744d27a46b82d65fb30ee
    Author: Scott Carter <[email protected]>
    Date:   Wed Aug 23 09:54:23 2023 -0400

        INTEL-51864 Use a newer version of the spring boot plugin for gradle.

        INTEL-51864 Update the lock files.

        INTEL-51864 update lock files for spring-web

        [INTEL-51864] moved com.amazonaws:aws-java-sdk-s3 from 1.11.86 to 1.12.261

        Successful build with "-x test"

        Update entire aws sdk so uniform versions are used.

        jettison upgrade to 1.5.4

        spring-boot-starter-test version discrepancy fix

        com.fasterxml.jackson update

        Note: prior the fix, there were two jackson versions
        resolved at the same time (by the IDE).
        The fix seems to only upgrade one of the two.
        Using a dependency graph analyzer, no other versions
        are found except the updated one.

        Update common libs.

        set software.amazon.awssdk:sdk-core version to match s3 version

        set software.amazon.awssdk:sdk-core version to match s3 version in server module

        update lock files for aws-sdk-core lib

        add snakeyaml 2.0 dependency lock

        drop snakeyaml update + update guava

        update elasticsearch

        exclude bouncycastle from common-aws

        exclude lucene since we do not use the transport client

        upgrade fasterxml to 2.15.0

        upgrade fasterxml to work with snakeyaml 2.0

        use version placeholder for fasterxml

        drop unnecessary exclusions

        exclude lucene at the configuration level

        drop all ES transport related classes/configs

        Revert "drop all ES transport related classes/configs"

        This reverts commit 6085ed764fd9959dba5e57def05783bea93b965c.

        do not exclude lucene

        Revert "Revert "drop all ES transport related classes/configs""

        This reverts commit 8f5f36aec9cb83e805a0d5c56c98c0039b42c99f.

        update lucene version to patch

        Revert "Revert "Revert "drop all ES transport related classes/configs"""

        This reverts commit 5f0aacb4e2feafa1ab5cd958cb3df0b9402def87.

commit 71e6e1846117dc7c6ed40f06f60e15fd6170caf7
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Thu Aug 24 12:31:04 2023 -0400

    INTEL-56874 Pull request conductor-oss#27: FS-4056 suppress loggers that generate too many logs

    Merge in DPA/mirror.conductor from task/FS-4056-1 to develop

    Squashed commit of the following:

    commit 0baf5ef3b7f7f8a27ba4e75e3a3161d5c9ebe99e
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Thu Aug 24 09:52:45 2023 -0500

        FS-4056 suppress loggers that generate too many logs

    Merge in DPA/mirror.conductor from task/FS-4056-1 to develop

    Squashed commit of the following:

    commit 0baf5ef3b7f7f8a27ba4e75e3a3161d5c9ebe99e
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Thu Aug 24 09:52:45 2023 -0500

        FS-4056 suppress loggers that generate too many logs

commit 9d134fe777d4a316d0e43c3ed29a66b883edad7f
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Wed Aug 16 12:23:08 2023 -0400

    INTEL-56874 Pull request conductor-oss#26: FS-3969 increase queue size and tone down logs

    Merge in DPA/mirror.conductor from task/FS-3969-2 to develop

    Squashed commit of the following:

    commit 84b857ca5c18c2c646da04e4877357a90bdcdc53
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Aug 16 10:45:16 2023 -0500

        FS-3969 increase queue size and tone down logs

    Merge in DPA/mirror.conductor from task/FS-3969-2 to develop

    Squashed commit of the following:

    commit 84b857ca5c18c2c646da04e4877357a90bdcdc53
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Aug 16 10:45:16 2023 -0500

        FS-3969 increase queue size and tone down logs

commit 9d2bb5b1d06ea2d8427f80da94c68383cea55cac
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Tue Aug 15 18:43:15 2023 -0400

    INTEL-56874 Pull request conductor-oss#25: FS-3969 increase threadpool size for async indexing

    Merge in DPA/mirror.conductor from task/FS-3969-1 to develop

    Squashed commit of the following:

    commit 2ea6e42613cd91419a3b378bfc6150445c4247cf
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 15:47:19 2023 -0500

        FS-3969 provide env property with default

    commit a12f769cb310bc23f267a58a938ed5348a0757c0
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 13:28:20 2023 -0500

        FS-3969 set property in code to fix tests

    commit 9912825260b6e617462eca3ad4fa064361f2cfd3
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 12:27:09 2023 -0500

        FS-3969 fix tests

    commit e16ac6ceb5df32cd9430296737f681e1ca83f877
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 11:50:40 2023 -0500

        FS-3969 increase threadpool size for async indexing

    Merge in DPA/mirror.conductor from task/FS-3969-1 to develop

    Squashed commit of the following:

    commit 2ea6e42613cd91419a3b378bfc6150445c4247cf
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 15:47:19 2023 -0500

        FS-3969 provide env property with default

    commit a12f769cb310bc23f267a58a938ed5348a0757c0
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 13:28:20 2023 -0500

        FS-3969 set property in code to fix tests

    commit 9912825260b6e617462eca3ad4fa064361f2cfd3
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 12:27:09 2023 -0500

        FS-3969 fix tests

    commit e16ac6ceb5df32cd9430296737f681e1ca83f877
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Aug 15 11:50:40 2023 -0500

        FS-3969 increase threadpool size for async indexing

commit e9e26288e9fa01cb58d9d02fdf7468db41325730
Author: Pallavi Santhosh Kumar <[email protected]>
Date:   Tue Aug 1 14:39:34 2023 -0400

    Pull request conductor-oss#24: Task/FS-3836 move sqs message generation

    Merge in DPA/mirror.conductor from task/FS-3836-1 to develop

    Squashed commit of the following:

    commit a11c337972b135e992ee3094814621b9fba50774
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Fri Jul 28 17:19:11 2023 -0500

        FS-3836 fix formats

    commit fd0723d7cb60d21d1728b6ba67bc78e4dd62d78f
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Fri Jul 28 17:17:27 2023 -0500

        FS-3836 cleanup + tests

    commit 7ff70b3d03e16fdcfbb186935ece4a52f34c7443
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Jul 26 10:24:50 2023 -0500

        FS-3836 fix a test

    commit d59b0c977b8cc8f789055bd2feb01464bfc3a112
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Jul 26 10:17:38 2023 -0500

        FS-3836 provide one autowired constructor

    commit 77914342474dbd1d1f085717c7bbb6532ffd9200
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Jul 26 10:06:30 2023 -0500

        FS-3836 fi format

    commit 6d55e3b8845d119e16f2dc0242dd25f7b393d6f4
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Jul 26 10:01:58 2023 -0500

        FS-3836 fi format

    commit 52d5106a52b0c0d80e091d7821763036e65f1593
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Wed Jul 26 09:56:34 2023 -0500

        FS-3836 hack assertion

    commit f8bfbe9918bf5115220165998a104a59d65f3827
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Jul 25 18:22:19 2023 -0500

        FS-3836 disable test

    commit 0d25cf357130430f83b790d3c6b599994238887a
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Jul 25 18:20:36 2023 -0500

        FS-3836 fix test

    commit f1ce2bf962aaeeaaec690a8023672fba979d7659
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Jul 25 18:12:41 2023 -0500

        FS-3836 apply format fixes

    commit 5dd5c3d5968f70fcd0efed9d33d407d6d2251b16
    Author: Pallavi Santhosh Kumar <[email protected]>
    Date:   Tue Jul 25 18:00:03 2023 -0500

        FS-3836 move workflow log export

... and 25 more commits
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants