Skip to content

Commit 8843612

Browse files
committed
Review suggestions
1 parent 2104fd9 commit 8843612

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

integrations/supabase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PowerSync Supabase connector
1+
# PowerSync Supabase Connector
22

33
Convenience implementation of a backend connector that provide the connection between your application backend and the PowerSync managed database
44
by delegating to Supabase.

integrations/supabase/build.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ kotlin {
3838
dependsOn(commonTest.get())
3939

4040
dependencies {
41-
// Separate project because SQLDelight can't generate code in test source sets.
42-
implementation(projects.integrations.sqldelightTestDatabase)
43-
4441
implementation(libs.kotlin.test)
4542
implementation(libs.kotlinx.io)
4643
implementation(libs.test.turbine)

integrations/supabase/src/commonMain/kotlin/com/powersync/connector/supabase/SupabaseConnector.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public open class SupabaseConnector(
211211
/**
212212
* Handles an error during the upload. This method can be overridden to log errors or customize error handling.
213213
*
214-
* By default, it throws the rest of a transaction away when the error code indicates that this is a fatal postgres
214+
* By default, it discards the rest of a transaction when the error code indicates that this is a fatal postgres
215215
* error that can't be retried. Otherwise, it rethrows the exception so that the PowerSync SDK will retry.
216216
*
217217
* @param tx The full [CrudTransaction] we're in the process of uploading.

0 commit comments

Comments
 (0)