Frank Oosterhuis
Frank Oosterhuis
For instance: to add packages to the base image you need to be root. Worked around this by flatMapping the dockerCommands and inserting an extra item. ``` dockerCommands := dockerCommands.value.flatMap...
### Describe the issue I want to get just the latest run, but I seem to fail. The --help describes limit as follows: > --limit int The number of runs...
Trying as per example: https://zenpy.readthedocs.io/en/latest/zenpy.html#incremental-exports ``` client = Zenpy(**credentials) yesterday = datetime.datetime.now(datetime.UTC) - datetime.timedelta(days=1) res = client.tickets.incremental(start_time=yesterday) res.end_time ``` not sure what I'm doing wrong
Using zenpy 2.0.56 ``` import datetime client = Zenpy(**credentials) rday = datetime.datetime.now() - datetime.timedelta(days=1) inc = ["users","comment_count", "metric_sets"] requests = client.tickets(start_time=rday,include=inc) ``` comment_count is present, but not the others
### Describe the bug dbt-core has the option to silence warnings in the project flags. dbt-databricks seems to ignore these (or some). ### Steps To Reproduce - Create a table...