Skip to content

Commit

Permalink
Merge pull request #173 from juicyllama/feature/171-support-allowed_f…
Browse files Browse the repository at this point in the history
…ields-in-_llana_public_access-and-ensure-it-plays-nice-with-_llana_roles

Relations filters
  • Loading branch information
andyslack authored Dec 29, 2024
2 parents 4492841 + ebe23ca commit e803823
Show file tree
Hide file tree
Showing 10 changed files with 508 additions and 379 deletions.
4 changes: 0 additions & 4 deletions demo/databases/airtable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -815,8 +815,6 @@ const build = async (table: string, tableRequest: AxiosRequestConfig<any>, recor
}
} catch (error) {
logger.error(`Error creating ${table} records`, DOMAIN)
console.dir(error.response?.data, { depth: null })
console.dir(recordsRequest, { depth: null })
throw new Error(`Error creating ${table} records`)
}
} catch (error) {
Expand Down Expand Up @@ -847,8 +845,6 @@ const build = async (table: string, tableRequest: AxiosRequestConfig<any>, recor
}
} else {
logger.error(`Error creating ${table} table`, DOMAIN)
console.dir(error.response.data, { depth: null })
console.dir(tableRequest, { depth: null })
throw new Error(`Error creating ${table} table`)
}
}
Expand Down
6 changes: 6 additions & 0 deletions docker/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ services:
- ../demo/databases/mysql.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- llana-network
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
interval: 10s
timeout: 3s
retries: 10
start_period: 10s

llana-postgres:
image: postgres
Expand Down
Loading

0 comments on commit e803823

Please sign in to comment.