mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
fix api endpoint
This commit is contained in:
@@ -65,7 +65,7 @@ jobs:
|
||||
# Check if container is running
|
||||
if docker ps | grep infisical-api; then
|
||||
# Try to access the API endpoint
|
||||
if curl -s -f http://localhost:4000/api/health > /dev/null 2>&1; then
|
||||
if curl -s -f http://localhost:4000/api/status > /dev/null 2>&1; then
|
||||
echo "API endpoint is responding. Container seems healthy."
|
||||
HEALTHY=1
|
||||
break
|
||||
|
||||
@@ -19,7 +19,7 @@ const sanitizedSlackIntegrationSchema = WorkflowIntegrationsSchema.pick({
|
||||
})
|
||||
);
|
||||
|
||||
// test change //
|
||||
// test change // //
|
||||
|
||||
export const registerSlackRouter = async (server: FastifyZodProvider) => {
|
||||
const appCfg = getConfig();
|
||||
|
||||
Reference in New Issue
Block a user