summaryrefslogtreecommitdiff
path: root/opendc-faas/opendc-faas-api
diff options
context:
space:
mode:
authorDante Niewenhuis <d.niewenhuis@hotmail.com>2024-03-05 13:23:57 +0100
committerGitHub <noreply@github.com>2024-03-05 13:23:57 +0100
commit5864cbcbfe2eb8c36ca05c3a39c7e5916aeecaec (patch)
tree5b2773b8dc21c2e1b526fb70f829c376dd80532a /opendc-faas/opendc-faas-api
parentd28002a3c151d198298574312f32f1cb43f3a660 (diff)
Updated package versions, updated web server tests. (#207)
* Updated all package versions including kotlin. Updated all web-server tests to run. * Changed the java version of the tests. OpenDC now only supports java 19. * small update * test update * new update * updated docker version to 19 * updated docker version to 19
Diffstat (limited to 'opendc-faas/opendc-faas-api')
-rw-r--r--opendc-faas/opendc-faas-api/build.gradle.kts2
-rw-r--r--opendc-faas/opendc-faas-api/src/main/kotlin/org/opendc/faas/api/FaaSClient.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/opendc-faas/opendc-faas-api/build.gradle.kts b/opendc-faas/opendc-faas-api/build.gradle.kts
index 8a295acd..2e4b5776 100644
--- a/opendc-faas/opendc-faas-api/build.gradle.kts
+++ b/opendc-faas/opendc-faas-api/build.gradle.kts
@@ -22,7 +22,7 @@
description = "API for the OpenDC FaaS platform"
-/* Build configuration */
+// Build configuration
plugins {
`kotlin-library-conventions`
}
diff --git a/opendc-faas/opendc-faas-api/src/main/kotlin/org/opendc/faas/api/FaaSClient.kt b/opendc-faas/opendc-faas-api/src/main/kotlin/org/opendc/faas/api/FaaSClient.kt
index d3abb7f1..297d3065 100644
--- a/opendc-faas/opendc-faas-api/src/main/kotlin/org/opendc/faas/api/FaaSClient.kt
+++ b/opendc-faas/opendc-faas-api/src/main/kotlin/org/opendc/faas/api/FaaSClient.kt
@@ -59,7 +59,7 @@ public interface FaaSClient : AutoCloseable {
name: String,
memorySize: Long,
labels: Map<String, String> = emptyMap(),
- meta: Map<String, Any> = emptyMap()
+ meta: Map<String, Any> = emptyMap(),
): FaaSFunction
/**