This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 1 comment 1 reply
-
Conductor does not have any authentication or authorization. Are you building Conductor as part of another Spring Boot application? if you are looking to use rest, you probably should be using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I've been working on migrating Conductor 2.30.0 -> Conductor 3.3.4.
I've been able to compile the conductor-server spring boot application and got it running with the mysql-persistence module. (
conductor.db.type= mysql
inapplication.properties
) I was able to successfully call the REST endpoint to view existing task definitions and workflow definitions, but I cannot successfullyPOST
to/api/workflow/{workflow_name}
to start those workflows anymore.Whenever I do that, I get a 403 Forbidden error.
But as seen here I'm pretty sure I'm calling the correct endpoint: https://github.com/Netflix/conductor/blob/v3.3.4/rest/src/main/java/com/netflix/conductor/rest/controllers/WorkflowResource.java
Problem is, I don't see anywhere in Conductor's source code that returns a 403 error code.
Maybe I might be missing some modules when compiling conductor-server? (Using Maven over gradle due to specific requirements.)
The dependencies specifically defined in my
pom.xml
are the following:conductor-grpc-serverRemoved as it was not needed.Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions