Arthur Chaloin

Results 16 comments of Arthur Chaloin

Hello, I tried this method but it doesn't work. My code: ```typescript const adapter = new SQLiteAdapter({ dbName: 'file:/tmp/test/test.db', // very small partition jsi: true, schema, migrations, }); adapter._dispatcher._unsafeErrorListener =...

I join others thinking it should be possible to test RoundTrippers. A workaround is to use `gock.DefaultTransport` as the underlying transport in your custom transport : ```go // Instead of...

Hello, sorry for late response. I'm not familiar with native debugging and I don't have much time to dig into it. Just wanted to give an update to this. I...

From my understanding, `coreos-cloudinit` is only executed [if the OEM ID matches a white list](https://github.com/flatcar/init/blob/96e929df6c04df58a87187cf2a769923e5ecdf41/systemd/system/oem-cloudinit.service#L7). In our case the OEM ID is `proxmoxve` so it shouldn't run. Also `coreos-cloudinit` may...

> Note that FCOS doesn't use networkd and thus it would be nice to also wire up the netplan flag here in case someone wants to use afterburn for network...

Fixed by setting `android:scaleType="centerInside"` and adding `android:background="#ffffff"` to `` to fill the void.

This is caused by `android.test:core` < v1.4.0. Adding this to `android/app/build.gradle` fixes for me : ``` configurations.all { resolutionStrategy { force 'androidx.test:core:1.5.0' } } ```

Hello, I am almost done implementing this into the exporter. Then we'll need to update the helm chart to be compatible with the changes, and then we'll release this feature....

Hello, there is an existing Igntion PR that should work at coreos/ignition#1790. Could you include the Ignition PR into this one so we can do further testing?