Skip to content

Commit 46031d7

Browse files
fix: realtime events payload
1 parent 0b5c28a commit 46031d7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/examples/java/functions/create-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public void main() {
1111
functions.createDeployment(
1212
functionId = "[FUNCTION_ID]",
1313
entrypoint = "[ENTRYPOINT]",
14-
code = File("./path-to-files/image.jpg"),
14+
code = File("file.png"),
1515
activate = false
1616
new Continuation<Response>() {
1717
@NotNull

docs/examples/java/storage/create-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public void main() {
1111
storage.createFile(
1212
bucketId = "[BUCKET_ID]",
1313
fileId = "[FILE_ID]",
14-
file = File("./path-to-files/image.jpg"),
14+
file = File("file.png"),
1515
new Continuation<Response>() {
1616
@NotNull
1717
@Override

docs/examples/kotlin/functions/create-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ suspend fun main() {
1111
val response = functions.createDeployment(
1212
functionId = "[FUNCTION_ID]",
1313
entrypoint = "[ENTRYPOINT]",
14-
code = File("./path-to-files/image.jpg"),
14+
code = File("file.png"),
1515
activate = false
1616
)
1717
val json = response.body?.string()

docs/examples/kotlin/storage/create-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ suspend fun main() {
1111
val response = storage.createFile(
1212
bucketId = "[BUCKET_ID]",
1313
fileId = "[FILE_ID]",
14-
file = File("./path-to-files/image.jpg"),
14+
file = File("file.png"),
1515
)
1616
val json = response.body?.string()
1717
}

0 commit comments

Comments
 (0)