Skip to content

Commit

Permalink
IJMP-760 Changes needed for release
Browse files Browse the repository at this point in the history
  • Loading branch information
KUGDev committed Oct 27, 2022
1 parent 55ccbc7 commit 74b06c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ signing.keyId=FADC1195
signing.password=key_pass
signing.secretKeyRingFile=path/to/secret/key

projectVersion=1.2.1
projectVersion=1.2.2
2 changes: 1 addition & 1 deletion src/main/kotlin/eu/ibagroup/r2z/DataAPI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface DataAPI {
@Header("Authorization") authorizationToken: String,
@Header("X-IBM-Max-Items") xIBMMaxItems: Int = 0,
@Header("X-IBM-Lstat") xIBMLstat: Boolean = false,
@Query("path") path: FilePath,
@Query("path") path: String,
@Query("depth") depth: Int = 1,
@Query("filesys") fileSystem: String? = null,
@Query("symlinks") followSymlinks: SymlinkMode? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ZosUssFileList (
val dataApi = buildApi<DataAPI>(url, httpClient)
val call = dataApi.listUssPath(
authorizationToken = Credentials.basic(connection.user, connection.password),
path = FilePath(filePath),
path = filePath,
xIBMMaxItems = params.limit,
xIBMLstat = params.lstat,
depth = params.depth,
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/eu/ibagroup/r2z/DataAPITest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class DataAPITest {
fun testListUss() {
val request = dataAPI.listUssPath(
authorizationToken = basicCreds,
path = FilePath("/u/CHP/test-env/test-files/testprog-jcl"),
path = "/u/CHP/test-env/test-files/testprog-jcl",
depth = 1,
followSymlinks = SymlinkMode.REPORT
)
Expand Down

0 comments on commit 74b06c5

Please sign in to comment.